2016-04-13 14:14:04 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "com.android.tools.build:gradle:1.5.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: "com.android.application"
|
|
|
|
|
|
|
|
android {
|
2016-12-24 02:34:19 -05:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.1"
|
2016-04-13 14:14:04 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-12-22 16:52:15 -05:00
|
|
|
versionCode 16
|
2016-04-13 14:14:04 -04:00
|
|
|
versionName "${System.env.VERSION_STR}.${versionCode}"
|
|
|
|
minSdkVersion 9
|
|
|
|
targetSdkVersion 9
|
|
|
|
applicationId "net.minetest.minetest"
|
|
|
|
manifestPlaceholders = [ package: "net.minetest.minetest", project: project.name ]
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
disable "OldTargetApi", "GoogleAppIndexingWarning"
|
|
|
|
}
|
|
|
|
|
|
|
|
Properties props = new Properties()
|
|
|
|
props.load(new FileInputStream(file("local.properties")))
|
|
|
|
|
|
|
|
if (props.getProperty("keystore") != null) {
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
storeFile file(props["keystore"])
|
|
|
|
storePassword props["keystore.password"]
|
|
|
|
keyAlias props["key"]
|
|
|
|
keyPassword props["key.password"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|