azesmway/react-native-unity

App crashes. Failed to load 'libmain.so'

Closed this issue · 8 comments

When launching an app there is an error almost on all phones.
Your Hardware does not support this app.
Failed to load 'libmain.so'
java.lang.Unsatisfied.Error ...

Is there any review guys? We faced the same problem when building the app.

Select target architecture of the devices you are running. If its Pixel on an Emulator, specifically select x86 in Target Architecture.

image

image

Here in jniLibs should also be present ARM64, am I right?

@azesmway

what if i get a problem

Execution failed for task ':unityLibrary:BuildIl2CppTask'.

I need to study each specific case, there can be many reasons

Thanks for reply, it helped. Have a nice day.

Just adding to here that I did all the config correctly on Unity side, but still got the same error.
What finally helped was adding the same abiFilters to android/app/build.gradle file as are present in unity/builds/android/unityLibrary/build.gradle:

so in my case I had to add

    defaultConfig {
        ndk {
            abiFilters 'arm64-v8a'
        }
    }

Also check out this thread for some other solutions if this doesn't fix it for you:
https://forum.unity.com/threads/app-not-working-on-some-devices-failed-to-load-libmain-so.1031137/