I am trying to add SQLCipher to my project. I am able to link the jar files to the project but there is problem linking the .so files provided.
Due to that I am getting UnSatisfiedLinkError when i try to open the DB.
Can anyone please let me know the best possible way to add .so files to the project and get it running.
In addition to jar files you need to include .so files. In my project I have:
Also make sure that you have added the .jar files properly. Go to
Project Properties -> Java Build Path -> Librariestab make surecommonc-codec.jar,gueva-r09.jar,sqlcipher.jarare added there.EDIT