My app works with an already provided DB. I generate this one manually with a sqlite script and I put it on the asset folder of my android studio project.
I want to encrypt it and working with it using SQLCipher. I already implemented it on my android app, but I need to encrypt my DB BEFORE putting it on the asset folder, in order to provide the users with an already encrypted DB I can use using SQLCipher.
How can I do this? Thanks in advance.