forked from jonasoreland/runnerup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (23 loc) · 758 Bytes
/
build.gradle
File metadata and controls
26 lines (23 loc) · 758 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.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 = '24.0.0'
compileSdkVersion = 22
targetSdkVersion = 22
versionName = "1.53"
versionCode = 14000053
travisBuild = System.getenv("TRAVIS") == "true"
// allows for -Dpre-dex=false to be set
preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
}