mirror of
https://github.com/danog/termux-api.git
synced 2024-11-30 04:19:20 +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 27
|
|
versionName "0.27"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:design:27.1.1'
|
|
}
|