droid48-gwh/app/build.gradle

29 lines
709 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 9
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"])
2016-12-20 22:14:18 +01:00
platformVersion = "9"
2016-02-21 19:01:58 +01:00
}
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'
2016-02-21 19:01:58 +01:00
}