-
Notifications
You must be signed in to change notification settings - Fork 29
/
build.gradle
57 lines (51 loc) · 1.58 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.4.10'
gradle_version = '4.0.1'
app_compat = '1.2.0'
legacy_support = '1.0.0'
koin_version = '2.0.1'
material_design = '1.3.0-alpha03'
retrofit_version = '2.6.0'
jackson_fasterxml = '2.9.7'
core_ktx = '1.3.2'
constraint_lyt = '2.0.1'
lifecycle_extension = '2.2.0'
couroutines_version = '1.3.0-M2'
http_logging = '4.1.0'
multidex = '2.0.1'
coroutines_adapter = '0.9.2'
glide_version = '4.10.0'
leakCanary = '2.0-beta-3'
mockwebserver_version = '4.1.0'
recycler_view_version = '1.1.0'
//testing libraries
junit_x_ext = '1.1.2'
testx_rules = '1.3.0'
android_arch_core_testing = '1.1.1'
retrofit_mock = '2.3.0'
mockk_version = '1.9.3'
espresso_contrib = '3.3.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
// 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
}