1
0
mirror of https://github.com/danog/termux-api.git synced 2024-12-03 09:47:52 +01:00
termux-api/app/build.gradle
2019-05-30 01:30:12 +02:00

36 lines
712 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.termux.api"
minSdkVersion 21
targetSdkVersion 28
versionCode 33
versionName "0.33"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'com.android.support:design:28.0.0'
}
task versionName {
doLast {
print android.defaultConfig.versionName
}
}