-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (54 loc) · 1.36 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
buildscript {
ext.kotlin_version = '1.1.60'
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext{
// SDK
minSdkVersion = 19
targetSdkVersion = 27
compileSdkVersion = 27
buildToolsVersion = '27.0.1'
//Test
testRunnerVersion = '1.0.1'
espressoVersion = '3.0.1'
junitVersion = '4.12'
// Dependencies
supportVersion = '27.0.1'
firebaseVersion = '11.6.0'
playServicesVersion = '11.6.0'
mapsUtilsVersion = '0.4.4'
baseRecyclerVersion = '2.9.32'
mosbyVersion = '3.0.4'
pageIndicatorVersion = '0.2.0'
circleImageViewVersion = '2.2.0'
glideVersion = '4.3.1'
imagePickerCropperVersion = '1.2'
constraintLayoutVersion = '1.0.2'
retrofitVersion = '2.3.0'
okhttpVersion = '3.8.1'
rxJavaVersion = '2.1.0'
rxAndroidVersion = '2.0.1'
rxCacheVersion = '1.8.1-2.x'
rxCacheGsonVersion = '0.0.3'
}