35 lines
No EOL
666 B
Groovy
35 lines
No EOL
666 B
Groovy
apply plugin: 'com.android.application'
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "27.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "org.ab.x48"
|
|
minSdkVersion 16
|
|
targetSdkVersion 24
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments "-DANDROID_PLATFORM=android-16"
|
|
}
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "src/main/jni/CMakeLists.txt"
|
|
}
|
|
}
|
|
|
|
splits {
|
|
abi {
|
|
enable true
|
|
reset()
|
|
include 'armeabi', 'mips', 'x86'
|
|
}
|
|
}
|
|
|
|
}
|
|
dependencies {
|
|
compile 'com.getkeepsafe.relinker:relinker:1.2.3'
|
|
} |