Hello. I have problem with migrate my project to sqlcipher-android.
I changed this:
implementation ‘net.zetetic:android-database-sqlcipher:4.5.4@aar’
SQLiteDatabase.loadLibs(this);
to this:
implementation ‘net.zetetic:sqlcipher-android:4.10.0@aar’
System.loadLibrary(“sqlcipher”);
and all old imports to new ones from new dependency. But when I run my application, it crash on starts with error:
java.lang.NoClassDefFoundError: Failed resolution of: Lnet/sqlcipher/database/SQLiteOpenHelper;
Caused by: java.lang.ClassNotFoundException: Didn’t find class “net.sqlcipher.database.SQLiteOpenHelper” on path: DexPathList
It looks like it search the old one class from old dependency, but I dont know why because I deleted everything old. Please help me with this