react-native-hermes

React native 0.61.5 Crashlytics missing libhermes.so: SoLoader.java com.facebook.soloader.SoLoader.assertInitialized

若如初见. 提交于 2020-08-22 11:50:53
问题 I am building a React-Native application, everything worked fine until I decided to upgrade from version 0.59.x to v 0.61.5 . When I try to release my app in the play store, I've got a lot of crashes reported by Firebase Crashlytics ( v 6.2.0 ) -- even though my version is just available for internal testing , so it must be a pre-launch report triggered by playstore -- and it's exactly the same error for the exact same device => LGE Nexus 5X with android 6.0.1 . Fatal Exception: java.lang

couldn't find DSO to load: libhermes-executor-release.so

孤人 提交于 2020-07-16 09:42:31
问题 log: Time Tag Message 15:56:52.131 SoLoader couldn't find DSO to load: libjscexecutor.so 15:56:54.275 SoLoader couldn't find DSO to load: libhermes-executor-release.so android\app\build.gradle: project.ext.react = [ entryFile: "index.js", enableHermes: true, ] android\build.gradle: allprojects { repositories { mavenLocal() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url("$rootDir/../node_modules/react-native/android") } maven { // Android JSC is

Getting “java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libhermes.so” error

耗尽温柔 提交于 2019-12-23 10:52:56
问题 I'm in the process of migrating a React Native project from react-native version 0.58.5 to 0.60.4. For the Android part I've done all the changes mentioned here I let Hermes disabled in my app build.gradle file: project.ext.react = [ entryFile: "index.js", enableHermes: false, // clean and rebuild if changing ] ... def jscFlavor = 'org.webkit:android-jsc:+' def enableHermes = project.ext.react.get("enableHermes", false); ... dependencies { ... if (enableHermes) { println 'Hermes is enabled'