Search code examples
androidandroid-preferencesandroid-backup-service

In android is there any way to preserve SharedPreferences after an uninstall


I am keeping some application meta data in SharedPreferences. Whenever I uninstall the application and reinstall it, the SharedPreferences are deleted.

Is there any way to get that to remain, so that if the user does an uninstall and reinstall, they can recover their old data?


Solution

  • You should add a BackupAgentHelper to your app. Together with the SharedPreferenceBackupHelper, it backups the SharedPreferences to the cloud (if the device supports it). When the app is reinstalled the data is restored.

    See:

    BackupAgentHelper

    SharedPreferenceHelper (contains all the code you need to implement it)

    general Backup guide