7

To solve this error I have added following to app gradle file, Can somebody help me to understand that what is this error about? I am new to android

def enableProguardInReleaseBuilds = false
def jscFlavor = 'org.webkit:android-jsc:+'
def enableHermes = project.ext.react.get("enableHermes", false);
if (useIntlJsc) {
        implementation 'org.webkit:android-jsc-intl:+'
    } else {
        implementation 'org.webkit:android-jsc:+'
    }

    if (enableHermes) {
        def hermesPath = "../../node_modules/hermesvm/android/";
        debugImplementation files(hermesPath + "hermes-debug.aar")
        releaseImplementation files(hermesPath + "hermes-release.aar")
    } else {
        implementation jscFlavor
    }

PS: this issue is still open from facebook's react-native community

Satish Mavani
  • 4,897
  • 2
  • 20
  • 30
  • I also encountered this problem https://stackoverflow.com/questions/62258550/couldnt-find-dso-to-load-libhermes-executor-release-so – ebyte Jun 08 '20 at 11:25

0 Answers0