droid48-gwh/app/build.gradle

33 lines
748 B
Groovy
Raw Normal View History

2016-02-21 19:01:58 +01:00
apply plugin: 'com.android.model.application'
model {
android {
2016-12-18 14:44:19 +01:00
compileSdkVersion 24
2016-12-18 14:41:05 +01:00
buildToolsVersion "25.0.2"
2016-02-21 19:01:58 +01:00
defaultConfig {
applicationId "org.ab.x48"
minSdkVersion.apiLevel 8
2016-12-18 14:44:19 +01:00
targetSdkVersion.apiLevel 24
2016-02-21 19:01:58 +01:00
}
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
}
2016-02-21 19:01:58 +01:00
}
}
}
}