-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
61 lines (48 loc) · 1.57 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.61'
// DI related versions
ext.dagger_version = '2.26'
// Moshi related versions
ext.moshi_version = '1.9.2'
ext.moshi_converter_version = '2.7.1'
ext.moshi_kotlin_codegen_version = '1.9.2'
// Retrofit related versions
ext.retrofit_version = '2.7.1'
ext.retrofit_rxkotlin_adapter_version = '2.7.1'
// Rx related versions
ext.rxkotlin_version = '2.4.0'
ext.rxandroid_version = '2.1.1'
// UI related versions
ext.nav_version = '2.3.0-alpha01'
ext.coil_version = '0.9.5'
ext.swipe_refresh_version = '1.0.0'
ext.material_version = '1.2.0-alpha04'
ext.constraint_layout_version = '1.1.3'
ext.fragment_extensions_version = '1.2.1'
// Testing related versions
ext.mockk_version = '1.9.3.kotlin12'
// Coroutine related versions
ext.kotlin_coroutines_core_version = '1.3.2'
ext.kotlin_coroutines_test_version = '1.3.2'
ext.kotlin_coroutines_android_version = '1.3.2'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$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
}