-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (44 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// for Android
ext {
compileSdkVersion = 26
buildToolsVersion = '26.0.3'
minSdkVersion = 15
targetSdkVersion = 26
}
// for Dependencies
ext {
kotlinVersion = '1.2.0'
kotlinCoroutinesVersion = '0.20'
kodeinVersion = '4.0.0'
ankoVersion = '0.10.3'
supportLibVersion = '25.3.1'
archVersion = '1.0.0-alpha3'
// RxJava
rxJavaVersion = '2.0.5'
rxAndroidVersion = '2.0.1'
rxLifecycleVersion = '2.1.0'
// Retrofit
retrofitVersion = '2.1.0'
okhttpVersion = '3.6.0'
// Requery
requeryVersion = '1.3.2'
}
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}