An Android app remembers its data after uninstall and reinstall

It’s because Android 6 has automatic backup. You need to tune android:allowBackup and android:fullBackupContent in your manifest <application> tag if you don’t want your data backed up or if you want to include or exclude some resources. It’s not a bug.

More about AutoBackup on Android here.

Leave a Comment