droid48-gwh/app/build.gradle
shagr4th 17305c8e8b Release APK with debuggable ndk (temporary fix)
debuggable enabled = no freeze on my device… how weird is that ?
2016-12-18 17:49:14 +01:00

33 lines
No EOL
748 B
Groovy

apply plugin: 'com.android.model.application'
model {
android {
compileSdkVersion 24
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "org.ab.x48"
minSdkVersion.apiLevel 8
targetSdkVersion.apiLevel 24
}
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 {
ndk {
debuggable true
}
}
}
}
}