Home > Enterprise >  React native release build crashes when hermes is enabled
React native release build crashes when hermes is enabled

Time:04-27

I try to create a release build, but get following error when hermes is enabled:

com.facebook.jni.CppException: Could not get BatchedBridge, make sure your bundle is packaged correctly

CodePudding user response:

I had a same issue and the problem was that i had duplicate implementation of

implementation "org.webkit:android-jsc: "

in app level build.gradle

  • Related