mirror of
https://github.com/shagr4th/droid48
synced 2024-12-26 21:58:12 +01:00
32 lines
No EOL
770 B
Groovy
32 lines
No EOL
770 B
Groovy
apply plugin: 'com.android.model.application'
|
|
model {
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "org.ab.x48"
|
|
minSdkVersion.apiLevel 8
|
|
targetSdkVersion.apiLevel 19
|
|
}
|
|
|
|
ndk {
|
|
moduleName "droid48"
|
|
ldLibs.addAll(["android", "log"])
|
|
}
|
|
|
|
productFlavors {
|
|
create("all") {
|
|
// If ndk.abiFilters is not configured, the application
|
|
// compile and package all suppported ABI.
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles.add(file("proguard-rules.pro"))
|
|
}
|
|
}
|
|
}
|
|
} |