React Native App keeps closing after opening it without crashing

Viewed 2120
2 Answers

It seems there might be many reasons for this happening. But still sharing what solved my crash.

I had enabled proguard in my release apk, I just disabled it.

In [project-root]/android/app/build.gradle file,

I changed from

def enableProguardInReleaseBuilds = true

to

def enableProguardInReleaseBuilds = false
Related