1
I’m having trouble publishing an app version. The Play store is notifying me about the new 32-bit and 64-bit architecture:
"This version does not comply with Google Play 64-bit requirement The following Apks or app packs are available for 64-bit devices. However, they only have 32-bit native codes: 22. Include native 64-bit and 32-bit codes in your app. Use the Android App Bundle publishing format to ensure that each device architecture automatically receives only the required native code. This will avoid increasing the overall size of your app. Learn more"
I followed the documentation steps, but still couldn’t add 64-bit support to my project code. Also I did not find much related beyond the official documentation.
Apparently they ask to add this line in gradew for those who use Android Studio:
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
But 64-bit library-supported folders are not yet generated by apk.
This configuration and the ones that are being presented in the responses, will only work if you are using the
ANDROID_NDK
to generate something with native codeC/C++
. -- If this is not your case, then you are probably using some third party framework that is not 64bit supported.– Icaro Martins
If you’re building builds with
ANDROID_NDK
, then maybe it’s worth it to add in your question the settings used inCMake
orndk-build
, for the community to better understand your problem. -- To add more information click on [Edit] below your question.– Icaro Martins