2015-07-26 02:23:21 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
2015-09-04 11:54:17 +02:00
|
|
|
compileSdkVersion 23
|
|
|
|
buildToolsVersion "23.0.0"
|
2015-07-26 02:23:21 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.termux.api"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 22
|
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
2015-08-01 01:45:27 +02:00
|
|
|
release {
|
2015-09-04 11:54:17 +02:00
|
|
|
storeFile new File((String) RELEASE_STORE_FILE) //noinspection GroovyAssignabilityCheck
|
|
|
|
storePassword RELEASE_STORE_PASSWORD //noinspection GroovyAssignabilityCheck
|
|
|
|
keyAlias RELEASE_KEY_ALIAS //noinspection GroovyAssignabilityCheck
|
|
|
|
keyPassword RELEASE_KEY_PASSWORD //noinspection GroovyAssignabilityCheck
|
2015-08-01 01:45:27 +02:00
|
|
|
}
|
2015-07-26 02:23:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
2015-08-01 01:45:27 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
2015-09-04 11:54:17 +02:00
|
|
|
signingConfig signingConfigs.release //noinspection GroovyAssignabilityCheck
|
2015-07-26 02:23:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|