android-calculatorpp/build.gradle

47 lines
748 B
Groovy
Raw Normal View History

2015-01-20 17:50:46 -05:00
public int version_code() {
2015-02-23 05:32:35 -05:00
return 142
2015-01-20 17:50:46 -05:00
}
public String version_name() {
2015-02-23 05:32:35 -05:00
return '2.1.3'
2015-01-20 17:50:46 -05:00
}
public int android_sdk_version() {
2015-05-11 10:16:01 -04:00
return 22
2015-01-20 17:50:46 -05:00
}
public String android_build_tools_version() {
2015-05-11 10:16:01 -04:00
return '22.0.1'
2015-01-20 17:50:46 -05:00
}
public String android_min_sdk_version() {
return 9
2015-01-20 17:50:46 -05:00
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
2015-01-20 17:50:46 -05:00
}
}
allprojects {
repositories {
mavenCentral()
def androidHome = System.getenv("ANDROID_HOME")
maven {
url "$androidHome/extras/android/m2repository/"
}
maven {
url "$androidHome/extras/google/m2repository/"
}
2015-01-20 17:52:52 -05:00
def userHome = System.getenv("HOME")
maven {
url "$userHome/.m2/repository/"
}
2015-01-20 17:50:46 -05:00
}
}