Reputation: 11
React Native Android application is not working in Samsung Galaxy S24 and A55 after installing from Play Store. The app freezes on the default launcher screen.
I found the solution of making the app 64-bit compatible but it is already compatible.
Here is my Gradle file:
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include “armeabi-v7a”, “x86”, “arm64-v8a”, “x86_64”
}
}
Even when I extracted the APK file, I found all 4 folders in the lib
folder.
Upvotes: 0
Views: 766
Reputation: 309
We had the same problem. Our solution was to upgrade the react-native version of our project to the latest version.
Upvotes: 0
Reputation: 2005
Things to try, possibly obvious but not assuming anything:
Not an answer, but a few avenues of investigation to get you started.
Upvotes: 0