Programming

React Native: This release is not compliant with the Google Play 64-bit requirement

React Native: This release is not compliant with the Google Play 64-bit requirement

Issue:

While uploading your bundle on android play store, you might be getting the following error. In this post, I am sharing a potential solution to this issue.

This release is not compliant with the Google Play 64-bit requirementThe following APKs or App Bundles are available to 64-bit devices, but they only have 32-bit native code: 9 and 24.Include 64-bit and 32-bit native code in your app. Use the Android App Bundle publishing format to automatically ensure that each device architecture receives only the native code it needs. This avoids increasing the overall size of your app.

Solution:

Add the following to your android/app/build.gradle file:

abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"

So, basically you are adding the 64-bit ABI for whatever 32-bit ABI it already had in the list.

Author

About the Author

Aman Dhanda is the Founder & CTO of Webolute, with over a decade of experience and 500+ successful projects delivered worldwide. He personally oversees every project, leading an expert team of designers, developers, and digital marketers dedicated to helping businesses grow online.

WhatsApp