forked from vivchar/RendererRecyclerViewAdapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (50 loc) · 1000 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
57
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
}
}
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 = 28
compileSdkVersion = 28
buildToolsVersion = "28.0.3"
androidxVersion = "1.0.0"
materialVersion = "1.0.0"
constraintVersion = "2.0.0-alpha2"
retrofit2Version = "2.3.0"
glideVersion = "4.0.0"
glideTransformationsVersion = "3.0.1"
gpuImageVersion = "1.4.1"
rxJavaVersion = "2.2.2"
rxAndroidVersion = "2.1.0"
streamVersion = "1.2.1"
}
apply plugin: 'android-reporting'