29 lines
No EOL
709 B
Groovy
29 lines
No EOL
709 B
Groovy
apply plugin: 'com.android.model.application'
|
|
model {
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "org.ab.x48"
|
|
minSdkVersion.apiLevel 9
|
|
targetSdkVersion.apiLevel 24
|
|
}
|
|
|
|
ndk {
|
|
moduleName "droid48"
|
|
ldLibs.addAll(["android", "log"])
|
|
platformVersion = "9"
|
|
}
|
|
|
|
productFlavors {
|
|
create("all") {
|
|
// If ndk.abiFilters is not configured, the application
|
|
// compile and package all suppported ABI.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
dependencies {
|
|
compile 'com.getkeepsafe.relinker:relinker:1.2.2'
|
|
} |