mirror of
https://github.com/danog/termux-api.git
synced 2024-11-26 20:04:42 +01:00
25 lines
499 B
Groovy
25 lines
499 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId "com.termux.api"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 30
|
|
versionName "0.30"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:design:28.0.0'
|
|
}
|