I created an encrypted sqlite database with SQLCipher export().
I'm worried about security and reverse engineering of the apk, so the decrypt password is not in the app, but it is entered from the user on app start.
The problem is: How can I read the encrypted database from assets folder?
I've found libraries like SQLiteAssetHelper or ExternalSQLIteimporter but they can't import encrypted databases.
Any idea?