Can I upload a package to Google Play Console, supporting both armeabi-v7a and arm64-v8a devices?
How to create such a package via buildozer?
In build.gradle
, you can add in support for both architectures under defaultConfig
. It should look something like this:
defaultConfig {
// ...
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}