mirror of
https://github.com/danog/termux-api.git
synced 2024-12-14 18:37:21 +01:00
29 lines
926 B
Groovy
29 lines
926 B
Groovy
apply plugin: 'com.android.application'
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "com.termux.api"
|
|
minSdkVersion 21
|
|
targetSdkVersion 22
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
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
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
signingConfig signingConfigs.release //noinspection GroovyAssignabilityCheck
|
|
}
|
|
}
|
|
}
|