forked from msdgwzhy6/phoenix-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (44 loc) · 1.02 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
buildscript {
ext.kotlin_version = '1.2.30'
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:bintray-release:0.8.1'
}
}
allprojects {
repositories {
jcenter()
google()
}
tasks.withType(Javadoc).all {
enabled = false
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
phoenixVerson = '1.0.15'
phoenixCoreVersion = '1.0.15'
//android
compileSdkVersion = 27
minSdkVersion = 16
targetSdkVersion = 27
versionCode = 1
versionName = "1.0"
supportLibraryVersion = "27.1.1"
constraintLayoutVersion = '1.0.2'
multiDexVersion = '1.0.3'
rxJavaVersion = "2.1.6"
rxAndroidVersion = "2.0.1"
gsonVersion = '2.8.2'
glideVersion = '4.6.1'
junitVersion = '4.12'
testRunnerVersion = '1.0.1'
testEspressoVersion = '3.0.1'
}