forked from jonasoreland/runnerup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (26 loc) · 867 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
project.ext {
//Common settings for all builds
//Note that Android Studio does not know about the 'ext' module and will warn
//Some settings may differ for 'froyo' release
//minSdkVersion differs between modules
buildToolsVersion = '25.0.2' //Update Travis manually
compileSdkVersion = 25 //Update Travis manually
targetSdkVersion = 25
supportLibrary = '25.1.0'
googlePlayServicesVersion = '10.0.1'
googleWearVersion = '1.4.0'
versionName = '1.56'
versionCode = 14000056
froyoVersionCode = 8000056
travisBuild = System.getenv("TRAVIS") == "true"
// allows for -Dpre-dex=false to be set
preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
}