-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbuild.gradle
195 lines (149 loc) · 5.45 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
// Define versions in a single place
ext {
// Sdk and tools
// Support library and architecture components support minSdk 14 and above.
minSdkVersion = 19
targetSdkVersion = 29
compileSdkVersion = 29
// App dependencies
coreKtxVersion = '1.2.0'
fragmentVersion = '1.3.0-alpha07' // androidx fragment. must use for new factory stuff
fragmentKtxVersion = '1.1.0-rc01'
// Appcompat and Widgets
appCompatVersion = '1.2.0'
materialVersion = '1.3.0-alpha02'
constraintLayoutVersion = '2.0.0-beta7'
recyclerViewVersion = '1.2.0-alpha02'
cardVersion = '1.0.0'
// Architecture MVVM & LiveData
archLifecycleVersion = '2.2.0'
// Navigation Component
navigationVersion = '2.3.0'
// Coroutines
coroutinesVersion = '1.4.2'
// Room
roomVersion = '2.3.0-alpha02'
// RxAndroid
rxjavaVersion = '2.2.19'
rxandroidVersion = '2.1.1'
rxjava3Version = '3.0.0'
// TODO Not Working with MockWebServer ?
// Retrofit
retrofitVersion = '2.8.1'
// OkHttpClient
// okHttpVersion = '4.3.0'
// MockWebServer
mockWebServerVersion = '4.3.0'
//Gson
gsonVersion = '2.8.6'
// Google
locationVersion = '17.0.0'
mapsVersion = '17.0.0'
// Glide
glideVersion = '4.9.0'
// Testing
androidXVersion = '1.0.0'
androidXTestCoreVersion = '1.2.0'
androidXTestExtKotlinRunnerVersion = '1.1.1'
androidXTestRulesVersion = '1.2.0-beta01'
archTestingVersion = '2.0.0'
espressoVersion = '3.2.0-beta01'
robolectricVersion = '4.3.1'
rulesVersion = '1.0.1'
truthVersion = '0.44'
mockKVersion = '1.10.0'
/*
For Codelab
*/
// local variables (use def)
def androidx_test_version = '1.2.0'
def appcompat_version = '1.1.0'
def constraint_layout_version = '1.1.3'
def coroutines_android_version = '1.3.5'
def expresso_version = '3.2.0'
def gson_version = '2.8.6'
def junit_version = '4.12'
def lifecycle_version = '2.1.0'
def livedata_version = '2.2.0-rc02'
def material_version = '1.0.0'
def retrofit_gson_version = '2.6.2'
def retrofit_version = '2.8.1'
def truth_version = '1.0'
def room_version = '2.2.2'
def work_version = '2.2.0'
libraries = [
// Kotlin standard library
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
// Coroutines
"org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_android_version",
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_android_version",
// Android UI and appcompat
"androidx.appcompat:appcompat:$appcompat_version",
"com.google.android.material:material:$material_version",
"androidx.constraintlayout:constraintlayout:$constraint_layout_version",
// ViewModel and LiveData
"androidx.lifecycle:lifecycle-extensions:$lifecycle_version",
"androidx.lifecycle:lifecycle-livedata-ktx:$livedata_version",
"androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version",
"androidx.work:work-runtime-ktx:$work_version",
// Room for database
"androidx.room:room-ktx:$room_version",
// network & serialization
"com.google.code.gson:gson:$gson_version",
"com.squareup.retrofit2:converter-gson:$retrofit_gson_version",
"com.squareup.retrofit2:retrofit:$retrofit_version",
]
librariesKapt = [
"androidx.room:room-compiler:$room_version",
]
librariesDebug = [
"com.google.truth:truth:$truth_version",
]
testLibraries = [
"junit:junit:$junit_version",
// Coroutines testing
"org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_android_version",
// mocks
"org.mockito:mockito-core:2.23.0",
// Architecture Components testing libraries
"androidx.arch.core:core-testing:$lifecycle_version"
]
androidTestLibraries = [
"junit:junit:$junit_version",
"androidx.test:runner:$androidx_test_version",
"androidx.test:rules:$androidx_test_version",
// Espresso
"androidx.test.espresso:espresso-core:$expresso_version",
"androidx.test.espresso:espresso-contrib:$expresso_version",
"androidx.test.espresso:espresso-intents:$expresso_version",
// Architecture Components testing libraries
"androidx.arch.core:core-testing:$lifecycle_version",
"androidx.work:work-testing:$work_version",
// Coroutines testing
"org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_android_version",
]
}