Build ABI specific APKs

This commit is contained in:
Aaron Culliney 2019-12-01 15:18:00 -08:00
parent 2bda54d342
commit 21fff2cc15
1 changed files with 17 additions and 0 deletions

View File

@ -21,6 +21,23 @@ android {
jniDebuggable true
}
}
splits {
// Configures multiple APKs based on ABI
abi {
// Enables building multiple APKs per ABI
enable true
// Resets the list of ABIs that Gradle should create APKs for to none
reset()
// Include just these ...
include "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
// Specifies that we do not want to also generate a universal APK that includes all ABIs
//universalApk false
}
}
lintOptions {
checkReleaseBuilds false
}