-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (31 loc) · 792 Bytes
/
build.gradle
File metadata and controls
36 lines (31 loc) · 792 Bytes
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}
allprojects {
version = VERSION_NAME
group = GROUP
ext {
// Android config
androidBuildToolsVersion = '25.0.2'
androidMinSdkVersion = 9
androidTargetSdkVersion = 25
androidCompileSdkVersion = 25
androidVersionCode = VERSION_CODE.toInteger()
androidVersionName = VERSION_NAME
// Libraries
libSupportv4 = 'com.android.support:support-v4:21.0.3'
libJunit = 'junit:junit:4.12'
libMockito = 'org.mockito:mockito-core:1.10.19'
}
repositories {
jcenter()
}
}