-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (52 loc) · 1.66 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = "1.3.71"
gradle_version = "3.5.3"
appcompat_version = "1.1.0"
ktx_version = "1.2.0"
cardVersion = "1.0.0"
recyclerViewVersion = "1.1.0"
constraint_version = "1.1.3"
test_junit_version = "4.12"
androidTest_junit_version = "1.1.1"
androidTest_espresso_version = "3.2.0"
androidTest_rules_version = "1.2.0"
navigationVersion = "2.2.1"
safeargsVersion = "1.0.0"
glideVersion = "4.11.0"
archLifecycleVersion = "2.2.0"
arch_core_testing_version = "2.1.0"
retrofitVersion= "2.6.0"
logingVersion = "3.10.0"
koinVersion = "2.0.1"
timber_version = "4.7.1"
shimmer_version = "0.5.0"
multidex_version = "1.0.3"
junit5_version = "5.5.2"
platform_runner_version = "1.5.2"
mockk_version = "1.9.3"
coroutine_version="1.3.5"
google_location_version="17.0.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$safeargsVersion"
// 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
}