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.
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/