I am using sqlcipher.jar for encrypting database in android and also using it\'s native library in
libs/armeabi folder
1)libdatabase_sqlcipher.
I was running into the same issue. First of all, check that all the libraries are correctly imported.
In my case the problem was that when we added another library project, these project had a armeabi_v7 folder, so apparently if will take precedence over the armeabi folder, meaning that the sqlitecypher libraries won't be located.
In our case the solution was just to remove the armeabi_v7 folder on the new library.
Hope it helps.