Problem with Google play

Hi. I want put my apps to google store and i have three error. Three error this same
java.lang.UnsatisfiedLinkError: couldn’t find DSO to load: libhermes.so result: 0

How to solve such an error?

I find this solution but not for ADALO

In my case I needed to add hermes path for each android build type

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

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.