Description
Hi Sir and thanks for making this incredible sql encryption product available to people. I have an app which first downloads a database stored on a server onto the sdcard (because it is of big size) and the app fetches data from the database and shows it to the user. I don't want people to just use simple sql browsing tools on windows or android to open the database personally as it has some really precious data which cost me money. What I have is-
1.) My app doesn't use SQLiteOpenHelper, my app uses
SQLiteDatabase database = SQLiteDatabase.openDatabase(path, null, 0); and other methods like get readable database (......openreadonly) etc.
I tried by simply replacing android.database.sqlite with net.sqlcipher.database. it didn't work. Can you advice something on going on with the situation I have?