mirror of
https://github.com/danog/termux-api.git
synced 2024-12-02 09:17:50 +01:00
1f2e562ac7
The project was just converted from Eclipse to Android Studio, so there may be some glitches.
34 lines
802 B
Groovy
34 lines
802 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
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 {
|
|
release {
|
|
storeFile new File(RELEASE_STORE_FILE)
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
}
|