I use Realm sdk , which internally uses the native lib librealm-jni.so.
I am noticing some crashes at Google Play reports, indicating that the lib is not found for some architectures:
Exception java.lang.UnsatisfiedLinkError: dlopen failed: "/data/data/com.my.app/app_lib/librealm-jni.so.10.9.0" has bad ELF magic
According to Google and several sites i've sen so far, the route should be in the format: /lib/<abi>/lib<name>.so, so the correct path should be /lib/armabi-v7a/librealm-jni.so.10.9.0
Is that something that should worry me?