I have an android application to save the login details such as user name and password via SharedPreferences
thats works fine, but i need to remove all my used SharedPreferences
while my application uninstall. How to do it?
SavePreferences("one ", "");
SavePreferences("two", "");
LoadPreferences();
private void SavePreferences(String key, String value){
sharedPreferences = getSharedPreferences("TEST", MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(key, value);
editor.commit();
}
private void LoadPreferences(){
sharedPreferences = getSharedPreferences("TEST", MODE_PRIVATE);
String strSavedMem1 = sharedPreferences.getString("MEM1", "");
String strSavedMem2 = sharedPreferences.getString("MEM2", "");
}
I want to remove this SharedPreferences
when my application uninstall.
The problem is not with preferences. It's drastically the backup manager! .. since android-23 by default backup as a task stores app's data including preferences to cloud. Later when you uninstall then install newer version you are probably going to use restored preferences. To avoid that, just add this to your manifest (or at least to debug manifest):
Read this: http://developer.android.com/guide/topics/data/backup.html
You will also see that if you run Lint under
Android > Lint > Security
:It's good to mention here that the process of backup is like a blackbox .. you don't know when it starts, and period between checks ... so better for developing to disable it.
Alternatively you can clear cache before uninstalling app.
I hope that may help.
The problem is not with preferences.
use this code for fix it..........
SharedPreferences
is always deleted along with the app uninstall.When you uninstall any application all the changes the application have made in your internal memory are revoked, that means your SharedPreference files, Other data files, Database file, Application gets removed automatically by the Android OS.
EDITED: 29/04/15: for >= 21 API refer @Maher Abuthraa 's answer
Its strange but I found the solution in following way:
xmlns:tools="http://schemas.android.com/tools"
in manifest tag of Manifest.xml fileandroid:allowBackup="false"
in application tag of Manifest.xml filetools:replace="android:allowBackup"
in application tag of Manifest.xml fileManifest.xml file should looks like this.
Its done.
Setting
allowBackup="false"
opts an application out of both backup and restore.