SharedPreferences not being removed on user uninstalling application

自古美人都是妖i 提交于 2019-11-27 21:01:37
code2be

Since Nexus 6P is running Android M, I think Automatic Backups is the issue.

I think You can use allowBackup to stop that.

Check this answer: https://stackoverflow.com/a/32010582/336312

In android M and above versions they keep application backups in google driver, you can disable this by using, go to your project manifest file under Application section set android:allowBackup="true" to false.and you are good to go.

you can add to your manifest:

        android:fullBackupContent="false"
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!