-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
67 lines (53 loc) · 1.26 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
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 21
targetSdkVersion = 29
compileSdkVersion = 29
androidXVersion = '1.2.0'
appCompatVersion = '1.1.0'
materialVersion = '1.1.0'
archLifecycleVersion = '2.0.0'
constraintLayoutVersion = '1.1.3'
recyclerViewVersion = '1.1.0'
cardViewVersion = '1.0.0'
navVersion = "2.2.2"
runnerVersion = '1.0.1'
rulesVersion = '1.0.1'
espressoVersion = '3.1.1'
junitVersion = '4.12'
mockitoVersion = '2.27.0'
archTestingVersion = '1.1.1'
gsonVersion='2.8.0'
retrofit2='2.6.0'
gson='2.6.0'
okhttp3='4.0.1'
// koin DI library
koinVersion = '2.0.1'
// coroutines version
coroutinesVersion = '1.3.6'
// ViewModel and LiveData
lifeCycle = '2.2.0'
//Coil an Image loading library
coilVersion = '0.6.1'
mapVersion = '17.0.0'
}