Reputation: 83
I get this crash on android studio, when i'm open the app, right after self updating the APK.
I read this posts :
Android Studio: java.lang.UnsatisfiedLinkError: dlopen failed
dlopen(“xxxx”) failed: dlopen failed: library “xxxx” not found 1
Android M crash java.lang.UnsatisfiedLinkError: dlopen failed: 5
and i tried to download the file and copy it in libs
directory, but it still didn't work.
Does anyone know a simple solution ?
BTW, I'm using sqlcipher
, as I understand it can be related.
Upvotes: 2
Views: 7959
Reputation: 83
After the help from helldawg13, I needed to add manually the libraries :
I created folder in
../src/main
called jniLibs and i extracted there the files like this project. Next, I found the file libutils.so here and copied that to jniLibs, and its working !
Thanks a lot !
Upvotes: -1