-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
43 lines (40 loc) · 1.28 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Define Versions in a single place
ext.versions = [
'appcompat' : '1.1.0-alpha05',
'material' : '1.1.0-alpha07',
'room' : '2.1.0-rc01',
'dagger' : '2.22.1',
'kotlin' : '1.3.31',
'rx_java' : '2.1.5',
'rx_android' : '2.1.0',
'glide' : '4.8.0',
'retrofit' : '2.3.0',
'okhttp3' : '3.8.1',
'timber' : '4.7.1',
'play_services' : '16.0.0',
'lottie' : '2.5.4',
'mockito' : '2.13.0',
'places' : '1.1.0'
]
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}