Database won't remove when uninstall the Android Application

后端 未结 5 751
执念已碎
执念已碎 2021-01-30 12:49

I have two major questions.

  1. Database won\'t delete when uninstall app.
  2. Downloaded files won\'t delete while unstable the app.

There is a d

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-30 13:18

    in Android 6.0, google added new feature called Auto Backup.

    when this option is on(default is on), Android system copies almost every directories and files that created by system, and upload it to user's google drive account.

    When user reinstalls app, android automatically restore app's data, no matter how it was installed(via Play store, adb install, initial device setup).

    The restore operation occurs after the APK is installed, but before the app is available to be launched by the user.

    android developers page : https://developer.android.com/guide/topics/data/autobackup.html

提交回复
热议问题