Hi,
do you know any ways how to protect your database in Android?
I consider following ways, but don't know whether it is possible to do:
- access to database has only application owner (which created and serves it)
- restrict or deny access to database to all applications during the usage session of DB owner application
- are there any ways to password protect your database?
Test with sqlite3 showed that you can change database while other application uses it. So, I assume that possibly some external application can corrupt your data or use it which is bad.
And also how do you propose to process database exception that could occur during such simultaneous database usage:
- show to user message and close
- show to user message and continue working
- just close ?
and after all this happens how do you propose to launch application next time?
Thanks