2015-07-26 02:23:21 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
2015-08-01 01:56:34 +02:00
|
|
|
compileSdkVersion 22
|
2015-07-26 02:23:21 +02:00
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.termux.api"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 22
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
2015-08-01 01:45:27 +02:00
|
|
|
release {
|
|
|
|
storeFile new File(RELEASE_STORE_FILE)
|
|
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
|
|
}
|
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'
|
|
|
|
signingConfig signingConfigs.release
|
2015-07-26 02:23:21 +02:00
|
|
|
}
|
|
|
|
}
|
2015-08-01 01:45:27 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2015-07-26 02:23:21 +02:00
|
|
|
}
|
2015-08-01 01:45:27 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
}
|