-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
executable file
·102 lines (92 loc) · 3 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.10'
ext.hilt_version = '2.28-alpha'
repositories {
google()
maven {
url 'https://maven.fabric.io/public'
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.4'
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
ext {
kotlin_coroutines_version = "1.3.7"
androidx_version = "1.1.0"
androidx_core_version = "1.3.2"
androidx_recycler_view_version = "1.1.0"
androidx_constraint_layout_version = "2.0.4"
androidx_cardview_version = "1.0.0"
dagger_version = '2.24'
play_services_map_version = '17.0.0'
shimmer_version = "0.4.0"
google_material_version = "1.2.1"
room_compiler_version = "1.1.1"
okhttp_version = "3.12.1"
okhttp_url_connection_version = "2.2.0"
fcm_version = "20.1.0"
firebase_analytics_version = "18.0.0"
firebase_iid_version = "20.0.2"
timber_version = "4.7.1"
room_version = "2.3.0-alpha01"
firebase_core_version = "18.0.0"
firebase_auth_version = "20.0.1"
lifecycle_version = "2.2.0"
gson_version = "2.8.6"
glide_version = "4.11.0"
gson_converter_version = "2.8.1"
paging_version = "2.1.2"
leakCanary_version = '1.6.3'
map_utils_version = "0.5"
maps_services_version = "0.2.9"
places_version = "2.4.0"
time_library_version = "1.2.4"
leku_version = "5.0.0"
ktx_version = "1.3.2"
rxjava_android_version = "2.1.1"
rxjava_version = "2.2.16"
multidex_version = "2.0.1"
architecture_components_room_version = '2.3.0-alpha01'
crashlytics_version = "2.10.1"
paper_onboarding_version = "1.1.3"
firestore_version = "22.0.0"
shimmer_version = "0.4.0"
espresso_idling_resource_version = "3.3.0"
//test dependency versions
junit_version = "4.12"
mockito_kotlin_version = "2.2.0"
mockito_version = "3.0.0"
runner_version = "1.3.0"
rules_version = "1.0.2"
espresso_version = "3.3.0"
junit_ext_version = "1.1.2"
espresso_androidx_test_version = "3.3.0"
mockk_version = "1.9"
core_testing_version = "1.1.1"
testButler_version = '1.3.2'
conditionwatcher_version = '0.2'
fragment_version = "1.1.0"
testButler_version = '1.3.2'
daggerMock_version = '0.8.4'
power_mock_version = '2.0.2'
mockito_inline_verion = '3.0.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}