-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdependencies.gradle
43 lines (42 loc) · 1.38 KB
/
dependencies.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
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
ext {
coroutinesVersion = '1.0.0'
kotlinVersion = '1.3.10'
retrofitVersion = '2.5.0'
deps = [
kotlin : [
"org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
"org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion",
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
],
networking : [
"com.squareup.retrofit2:retrofit:${retrofitVersion}",
"com.squareup.retrofit2:converter-gson:${retrofitVersion}",
"com.squareup.okhttp3:logging-interceptor:3.9.1",
],
scanner : [
"com.google.zxing:core:3.3.0"
],
test : [
"org.json:json:20160810",
"androidx.test.espresso:espresso-core:3.1.0",
"junit:junit:4.12",
"org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion",
"org.amshove.kluent:kluent-android:1.30",
"org.robolectric:robolectric:4.0.2",
"com.squareup.okhttp3:mockwebserver:3.9.1",
"com.squareup.retrofit2:retrofit-mock:$retrofitVersion",
"androidx.test:core:1.0.0",
"androidx.test:runner:1.1.0",
],
appCompat: [
"androidx.appcompat:appcompat:1.0.2"
]
]
}