I am using database in one of my application while creating database. I am setting the MODE as private.
I want to know will it be enough to make it secure or do I have to go through encryption-decryption process to make it secure.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, SharedPreferences and SQLite databases are only as secure as the user let them be, but in most cases they’ll do just fine (make sure you encrypt any passwords though).
The thing is that they’re two ways of accessing a specific applications’ databases:
Contextfrommyapplication, it could be able to access themTo sum it up: They’re secure most of the time, but protect sensitive data just to be on the safe side.