forked from vivchar/RendererRecyclerViewAdapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (49 loc) · 973 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
49
50
51
52
53
54
55
56
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
allprojects {
repositories {
jcenter()
google()
maven { url 'https://oss.sonatype.org/content/groups/staging/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
mavenCentral()
google()
}
}
ext {
applicationID = "com.example.vivchar.example"
versionName = "1.0"
versionCode = 1
minSdkVersion = 14
targetSdkVersion = 26
compileSdkVersion = 26
buildToolsVersion = "27.0.3"
supportLibraryVersion = "27.0.2"
constraintVersion = "1.0.2"
retrofit2Version = "2.3.0"
glideVersion = "4.0.0"
glideTransformationsVersion = "3.0.1"
gpuImageVersion = "1.4.1"
rxJavaVersion = "2.1.6"
rxAndroidVersion = "2.0.1"
streamVersion = "1.1.9"
}
apply plugin: 'android-reporting'