-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (37 loc) · 880 Bytes
/
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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.google.gms:google-services:4.0.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 19
targetSdkVersion = 26
compileSdkVersion = 26
buildToolsVersion = '26.0.2'
googlePlayVersion = '11.8.0'
supportLibraryVersion = '27.0.2'
architectureComponentsVersion = '1.0.0'
daggerVersion = '2.14.1'
mapperVersion = '1.2.0.Final'
okHttpVersion = '3.9.0'
retrofitVersion = '2.3.0'
rxJavaVersion = '2.1.8'
rxAndroidVersion = '2.0.1'
rxBindingVersion = '2.0.0'
rxRelayVersion = '2.0.0'
}