1
0
mirror of https://github.com/danog/termux-api.git synced 2024-12-04 10:17:58 +01:00
termux-api/app/build.gradle

36 lines
712 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
2017-04-06 10:45:34 +02:00
android {
2018-08-26 01:19:05 +02:00
compileSdkVersion 28
defaultConfig {
applicationId "com.termux.api"
minSdkVersion 21
2018-08-26 01:19:05 +02:00
targetSdkVersion 28
versionCode 37
versionName "0.37"
}
buildTypes {
release {
minifyEnabled false
2015-08-01 01:45:27 +02:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
2019-02-05 23:05:53 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
2019-01-10 23:57:58 +01:00
implementation 'com.android.support:design:28.0.0'
}
2019-05-29 23:30:23 +02:00
task versionName {
doLast {
print android.defaultConfig.versionName
}
}