-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (41 loc) · 1.13 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
buildscript {
ext.kotlin_version = '1.3.70'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
/** Dependencies */
// Android
min_sdk_version = 21
target_sdk_version = 29
compile_sdk_version = 29
version_code = 63
junit_version = '4.12'
androidx_default_version = '1.0.0'
lifecycle_version = '2.2.0'
app_compat_version = '1.0.2'
constraint_version = '1.1.3'
dagger_version = '2.16'
mockito_version = '2.1.0'
mockito_inline_version = '2.8.9'
assertj_version = '3.11.1'
androidx_legacy_version = '1.0.0'
material_version = '1.1.0-alpha10'
dataprovider_version = '2.0'
coroutine_version = '1.1.1'
}