how to remove shared preference while application uninstall in android

AndroidAndroid Preferences

Android Problem Overview


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.

Android Solutions


Solution 1 - Android

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):

<application ...
        android:allowBackup="false">
...
</application>

Read this: http://developer.android.com/guide/topics/data/backup.html

You will also see that if you run Lint under Android > Lint > Security:

lint warning on backup

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.

==== Update ====

You may get Manifest merger issues after setting allowbackup to false. To fix that issue add:

tools:replace="android:allowBackup"

in the application element. Credit to @shahzain-ali

Alternatively you can clear cache before uninstalling app.

I hope that may help.

Solution 2 - Android

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

Solution 3 - Android

Its strange but I found the solution in following way:

  1. Add xmlns:tools="http://schemas.android.com/tools" in manifest tag of Manifest.xml file
  2. Add android:allowBackup="false" in application tag of Manifest.xml file
  3. Add tools:replace="android:allowBackup" in application tag of Manifest.xml file

Manifest.xml file should looks like this.

    <?xml version="1.0" encoding="utf-8"?><!--suppress ALL -->
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        package="com.package">

	    // Other code

    <application
        android:name="com.package.Application"
        android:allowBackup="false"
        android:hardwareAccelerated="true"
        android:icon="@drawable/appicon"
        android:label="@string/application_name"
        android:largeHeap="true"
        android:theme="@style/AppTheme"
        tools:replace="android:allowBackup">
       
        <activity
            android:name="com.package.SplashActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:label="@string/application_name"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
		
		// Other code

    </application>

    </manifest>

Its done.

Solution 4 - Android

The problem is not with preferences.

use this code for fix it..........

<application
    android:allowBackup="true"
    android:fullBackupContent="false"></application>

Solution 5 - Android

Setting allowBackup="false" opts an application out of both backup and restore.

 android:allowBackup="false"

Solution 6 - Android

Shared Preferences do not always get deleted anymore as of marshmallow. Add this line in your manifest: "android:allowBackup="false""

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionshivcenaView Question on Stackoverflow
Solution 1 - AndroidMaher AbuthraaView Answer on Stackoverflow
Solution 2 - AndroidDhaval ParmarView Answer on Stackoverflow
Solution 3 - AndroidHiren PatelView Answer on Stackoverflow
Solution 4 - AndroidMohammad FaizanView Answer on Stackoverflow
Solution 5 - AndroidMahendran CandyView Answer on Stackoverflow
Solution 6 - AndroidBinyamin RobbinsView Answer on Stackoverflow