-
Notifications
You must be signed in to change notification settings - Fork 272
/
build.gradle
53 lines (46 loc) · 1.16 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
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
maven { url 'https://dl.bintray.com/sfsheng0322/maven' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.novoda:bintray-release:0.9'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
maven { url 'https://dl.bintray.com/sfsheng0322/maven' }
}
ext {
COMPILE_SDK_VERSION = 28
BUILD_TOOL_VERSION = '28.0.3'
SUPPORT_LIBRARY_VERSION = '28.0.0'
GLIDE_VERSION = '4.9.0'
MIN_SDK_VERSION = 14
TARGET_SDK_VERSION = 28
VERSION_CODE = 8
VERSION_NAME = '2.1.0'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 27
buildToolsVersion = '27.1.1'
supportLibraryVersion = '27.1.1'
minSdkVersion = 14
targetSdkVersion = 27
versionCode = 7
versionName = "2.0.2"
}