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-06-20 15:39:58 -04:00
return 143
2015-01-20 17:50:46 -05:00
}
public String version_name() {
2015-06-20 15:39:58 -04:00
return '2.1.4'
2015-01-20 17:50:46 -05:00
}
public int android_sdk_version() {
2015-10-16 08:56:58 -04:00
return 23
2015-01-20 17:50:46 -05:00
}
public String android_build_tools_version() {
2015-10-16 08:56:58 -04:00
return '23.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 {
2015-10-16 08:56:58 -04:00
classpath 'com.android.tools.build:gradle:1.3.0'
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
}
}