mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-04 17:55:36 +08:00
32 lines
572 B
Groovy
32 lines
572 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
sourceSets {
|
|
main {
|
|
jni.srcDirs = []
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.termux"
|
|
minSdkVersion 21
|
|
targetSdkVersion 22
|
|
versionCode 20
|
|
versionName "0.20"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|