forked from jonasoreland/runnerup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (32 loc) · 960 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
repositories {
maven {
url "https://maven.google.com"
}
}
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 = '26.0.1' //Update Travis manually
compileSdkVersion = 25 //Update Travis manually
targetSdkVersion = 25
supportLibrary = '25.3.1'
googlePlayServicesVersion = '11.0.4'
googleWearVersion = '2.0.4'
junitVersion = '4.12'
mockitoVersion = '2.3.7'
versionName = '1.58'
versionCode = 58
travisBuild = System.getenv("TRAVIS") == "true"
// allows for -Dpre-dex=false to be set
preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
}