Search code examples
google-playgoogle-play-consolebuildozer

Upload APK supporting both arm64-v8a and armeabi-v7a


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?


Solution

  • 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'
        }
    }