-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
50 lines (41 loc) · 986 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
}
}
allprojects {
repositories {
jcenter()
repositories {
flatDir {
dirs 'libs'
}
}
}
}
// This block encapsulates custom properties and makes them available to all
// modules in the project.
ext {
compileSdkVersion = 25
buildToolsVersion = "25.0.3"
supportLibVersion = "25.3.1"
supportAnnotationsVersion = "25.3.1"
jUnitVersion = "4.12"
minSdkVersion = 15
targetSdkVersion = 25
versionCode = 2
versionName = "1.0.3"
release_debuggable = false
release_minifyEnabled = false
release_useProguard = false
release_shrinkResources = false
debug_debuggable = true
debug_testCoverageEnabled = true
defaultPublishConfig = "release"
publishNonDefault = true
testBuildType = "debug"
}
apply plugin: 'java'