Reputation: 18803
How to alter
or delete
specific application data using Asyncstorage
when uninstall
or update
app
Upvotes: 2
Views: 3661
Reputation: 881
App locally saved data might be backed up on Google Drive on the latest versions of Android. You can disable it either by setting <android:allowBackup="false">
(true is the default behavior) or by disabling auto backup in your phone's settings.
Upvotes: 4
Reputation: 4961
uninstall
your app by default Asyncstorage
data will be deleted.update
thing, you can store and check current app version at very starting
of application and if mismatches then do whatever you need.Upvotes: 3