-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (32 loc) · 959 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.1.1' apply false
id 'com.android.library' version '7.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.5.30' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 19
targetSdkVersion = 28
compileSdkVersion = 28
androidXVersion = '1.2.0'
appCompatVersion = '1.1.0'
archLifecycleVersion = '2.4.1'
constraintLayoutVersion = '2.1.3'
recyclerViewVersion = '1.2.1'
cardViewVersion = '1.0.0'
runnerVersion = '1.2.0'
espressoVersion = '3.2.0'
junitVersion = '4.12'
mockitoVersion= '2.27.0'
archTestingVersion = '2.1.0'
fragmentKtxVersion = '1.4.1'
gsonVersion='2.8.9'
retrofit2='2.9.0'
gson='2.9.0'
okhttp3='3.10.0'
glideVersion='4.10.0'
exoVersion='2.15.1'
}