I'm trying to use a database for my application which is a sqflite. Since my application is offline and my data stored in database is important I'm looking for a way to password protect the database to prevent it to reveal data after decompiling the APK. So here is a couple of questions that may clarify what I'm trying to achieve:
- Is it possible to password protect a sqflite db? How?
- What database do you suggest for an offline flutter app which is fast and secure?
- How to secure that database from spoiling?
Answering to any of the above questions is appreciated.