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.
2
Answers
Things to try, possibly obvious but not assuming anything:
Locate the app’s bundle id in the output, determine the PID of the process.
Filter app.log by the PID.
Look for any exception/stack trace information.
Not an answer, but a few avenues of investigation to get you started.
Do you have any updates? We are experiencing the same problem with users who installed our app on their Galaxy S22 and S23 devices. Our app launches, but when the user clicks on any element, it freezes. Other Android users are not experiencing this issue.