An Android app remembers its data after uninstall and reinstall

后端 未结 8 2251
半阙折子戏
半阙折子戏 2020-11-28 17:58

While developing an Android app targeting all versions above 4.1, I observed that uninstalling my app and installing it again does not clear its data.

The app is d

8条回答
  •  一整个雨季
    2020-11-28 18:29

    Just change android:allowBackup="true" to android:allowBackup="false" in manifiest.xml. It will be worked.

    
    
    

提交回复
热议问题