mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-03-06 00:29:34 +00:00
Build ABI specific APKs
This commit is contained in:
parent
2bda54d342
commit
21fff2cc15
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user