Sudhanshu Gaur
Sudhanshu Gaur

Reputation: 7664

Android Studio Debugging Clearing App Data but data is not getting deleted when running app again?

I am running my Android app in debug Build Variant now I am observing a strange thing that is, whenever I am clearing my App data and then running my app again from Android Studio then still I am seeing old data which was stored previously in Shared Preferences and in RealmDB, but how come this data which I have cleared earlier is coming back again in shared preferences.

Is this a normal behaviour while debugging in Android Studio ??

This is happening every time I am running my app after clearing the App Data.

Upvotes: 1

Views: 523

Answers (1)

Islam Salah
Islam Salah

Reputation: 983

Try

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

For more details check the related google docs.

Upvotes: 1

Related Questions