droid48-gwh/app/build.gradle
2020-02-24 21:32:07 +01:00

38 lines
No EOL
992 B
Groovy

apply plugin: 'com.android.application'
android {
signingConfigs {
release {
def Properties localProps = new Properties()
localProps.load(new FileInputStream(file('../local.properties')))
assert localProps['droid48.store'];
storeFile file(localProps["droid48.store"])
keyAlias localProps["droid48.alias"]
storePassword localProps["droid48.storePass"]
keyPassword localProps["droid48.pass"]
}
}
compileSdkVersion 26
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "org.ab.x48"
minSdkVersion 16
targetSdkVersion 26
externalNativeBuild {
cmake {
arguments "-DANDROID_PLATFORM=android-16"
}
}
}
externalNativeBuild {
cmake {
path "src/main/jni/CMakeLists.txt"
}
}
}
dependencies {
implementation 'com.getkeepsafe.relinker:relinker:1.4.1'
}