Android M crash java.lang.UnsatisfiedLinkError: dlopen failed:

Crash is coming because of following fact that has been changed in Android M

“On previous versions of Android, if your app requested the system to load a shared library with text relocations, the system displayed a warning but still allowed the library to be loaded. Beginning in this release, the system rejects this library if your app’s target SDK version is 23 or higher. To help you detect if a library failed to load, your app should log the dlopen(3) failure, and include the problem description text that the dlerror(3) call returns. To learn more about handling text relocations, see this guide”

for more details please refer to this link

Leave a Comment