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 requirement
The 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.