Search code examples
androidrealmandroid-storage

Save information in local Storage


I'm using realm(also tried sharepreference) to save some information.But When I cleared app's data,All information has removed. I have one question.How I can save some information to my device,witch always 'll be in storage? (if i cleared data or uninstalled my app)


Solution

  • Yes, clearing local data delete shared preferences and data in the local SQL Lite database as well. However you can make a folder for your app in local SD card or in phone's internal storage. These folders will not be deleted even if your app uninstalled. In these folders you can store your data in some sort of a format, it maybe in plain text or it maybe some encrypted files. It's your call.. hope this helps