Read data from SQliteCipher without creating Helper Class while Migrating SQLiteCipher (V1) to Room (V2):
I build two apps with the same package name:
In the first app, I use SQLiteCipher using "Pass_Phrase" (Version_1 DB) for CRUD operations using Java.
In the second app, I just wanted to read data (without making helper class) from SQLiteCipher and put it into Room (Version_2 DB) using Kotlin.
I completed the first app and was stuck at Reading SQLitecipher Data in the second app. Need your help. Thanks a lot!
Code: UserDB.kt
@Database(entities = [User::class], version = 2, exportSchema =...