27 lines
No EOL
540 B
Groovy
27 lines
No EOL
540 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"
|
|
}
|
|
}
|
|
|
|
}
|
|
dependencies {
|
|
implementation 'com.getkeepsafe.relinker:relinker:1.2.3'
|
|
} |