Reputation: 408
Im using SQLite Storage in my healthcare application.I have some idea of why we are going for local storage
But, I got some opposite question like
suppose if i lost my phone there is chance to get my personal data from the memory of the device.
kindly help me
Upvotes: 0
Views: 68
Reputation: 14710
You can encrypt the data from SQLite. Either encrypt it on runtime using a custom encryption algorithm, or you can use some APIs for that. The most popular seems to be SQLCipher for Android
.
Upvotes: 1