-
Notifications
You must be signed in to change notification settings - Fork 567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updation from android-database-sqlcipher to sqlcipher-android #643
Comments
You have to remove the Footnotes |
Hi, I have removed and added implementation 'net.zetetic:sqlcipher-android:4.5.5@aar' packagingOptions { and in my activity I have changed this SQLiteDatabase.loadLibs(_mContext); to SQLiteDatabase.loadLibs(_mContext, libraries -> { But now I am getting this issue java.lang.UnsatisfiedLinkError: dlopen failed: library "libsqlcipher.so" not found Can you please help me with this issue? Thank you. |
Why are you excluding the native |
Hello fellows, I received the same mesage from the playstore. "net.zetetic:android-database-sqlcipher has reported android-database-sqlcipher:3.5.9 as outdated. You may not be able to release future versions of your app with this SDK version to production or open testing." does that mean i have to update it to version starting with 4.x or migrate to the newer "net.zetetic:sqlcipher-android" library. I know the latter would be better option, but it caught me off guard and full migration to different API would take time and testing. So can i just update it to version 4.x and migrate just the db's? |
I excluded the libsqlcipher.so because I was getting this error Task :maxRVU:mergeMaxrvuDebugNativeLibs FAILED /Users/ashish/.gradle/caches/transforms-3/47cad2ebd25762db6d4f72d65143456b/transformed/jetified-sqlcipher-android-4.5.5/jni/arm64-v8a/libsqlcipher.so Can you help me with this issue? And how long will it be until I can no longer use the current version I am using? Thank you. |
Hello @DinShopper, The Footnotes |
Hello @developernotes, Thank you very much for the fast response. I am planning to update to the sqlcipher-android, but for the time being a way to avoid the Google Play Store message is a priority for me. Is there a page (link) where i can see which versions of the old library (android-database-sqlcipher) are currently outdated for the Google Play Store. Are only the 3.x versions marked as outdated, or are the 4.x versions also considered outdated? |
Footnotes |
Please try cleaning your Gradle cache if you are still getting a merge native libs error if you've already settled on either only |
Hi @developernotes , I am getting this error and app is getting crashed. java.lang.UnsatisfiedLinkError: No implementation found for void net.sqlcipher.database.SQLiteDatabase.dbopen(java.lang.String, int) (tried Java_net_sqlcipher_database_SQLiteDatabase_dbopen and Java_net_sqlcipher_database_SQLiteDatabase_dbopen__Ljava_lang_String_2I) |
Hi @asifsaifi92,
Unfortunately, this is not enough information to diagnose the issue you are experiencing. Below are some questions that would help us better understand your situation:
If your issue is not related to the initial posting, please consider posting a new separate issue. |
Hi, thanks for the reply. So I went back & deleted the cache folder in my .gradle folder. Invalidated the cache in my android studio. Also removed the exclude lines as you instructed. Then in my gradle file I replaced 'implementation 'net.zetetic:android-database-sqlcipher:3.5.9@aar'' with 'implementation 'net.zetetic:sqlcipher-android:4.5.5@aar''. But still I'm getting this error - 2 files found with path 'lib/arm64-v8a/libsqlcipher.so' from inputs:
Can you please help me with a solution of my problem? Thanks in advance. |
You will need to review your dependencies, both direct and transitive as it appears you are pulling in both |
Hi, thanks for the reply. I checked my dependencies & found that this dependency creates android-database-sqlcipher folder implementation "com.commonsware.cwac:saferoom.x:0.5.1" But I can't remove this because it is connected to a lot of places in my application. Can you suggest a way out for me? Thank you. |
Hi, also can you let me know an approximate time till when I can use android-database-sqlcipher version 4.2.0+ ? Since removing com.commonsware.cwac:saferoom.x:0.5.1 on short notice will require a lot of work because my app has live users. Thanks in advance. |
Hello @ashishgingercube - we can't provide an exact time for how long you can use 4.2.0. As mentioned earlier, the |
Hi, thanks for the update. Much appreciated. |
Hello, @developernotes I have a question: Is there a specific rationale for validating the result of executing 'PRAGMA cipher_migrate;' to be (0), or can I rely on the library itself to throw exceptions afterwards to detect that migration failed? |
Hi @DinShopper, No, you should not expect an exception to be raised when executing |
Hi @DinShopper, so when I upgraded to "net.zetetic:android-database-sqlcipher:4.2.0@aar" & "com.commonsware.cwac:saferoom.x:1.0.0" & ran the application I got this error "Caused by: net.sqlcipher.database.SQLiteException: file is not a database: , while compiling: select count(*) from sqlite_master;". But when I uninstall the application & re-run it again then it works. This is my code. mInstance = Room.databaseBuilder(context, Can you help me in identifying what could be the issue here? Thanks in advance. |
Hi, @developernotes I see, i though that i can rely on the exception that is thrown afterwards, because after the hook tries to migrate the database - if it's ok the opened connection can be used and if the hook fails it throws an exception that like this "net.sqlcipher.database.SQLiteException: file is not a database: , while compiling: select count(*) from sqlite_master;" |
After you uninstall the application and install it again the database is newly created with the SQLCipher 4 settings and that's why it's ok and working. I suspect in your case that you are not migrating the already created databases from the previous version of your application. |
Hi @DinShopper,
Yes, that is fine. |
Hi, my application has been using android-database-sqlcipher for quite some years now. Today I got the following message from playstore.
net.zetetic:android-database-sqlcipher has reported android-database-sqlcipher:3.5.9 as outdated. You may not be able to release future versions of your app with this SDK version to production or open testing.
so I replaced implementation ‘net.zetetic:android-database-sqlcipher:3.5.9@aar’ with implementation ‘net.zetetic:sqlcipher-android:4.5.5@aar’
But on doing that I am getting this issue.
Task :maxRVU:mergeMaxrvuDebugNativeLibs FAILED
Execution failed for task ‘:maxRVU:mergeMaxrvuDebugNativeLibs’.
A failure occurred while executing com.android.build.gradle.internal.tasks.MergeNativeLibsTask$MergeNativeLibsTaskWorkAction
2 files found with path ‘lib/arm64-v8a/libsqlcipher.so’ from inputs:
Can you help me with what I can do to fix this issues?
Thank you.
The text was updated successfully, but these errors were encountered: