Mahdi Bashirpour
Mahdi Bashirpour

Reputation: 18803

Alter or delete user data using Asyncstorage when Uninstall React Native App

How to alter or delete specific application data using Asyncstorage when uninstall or update app

Upvotes: 2

Views: 3661

Answers (2)

Akhilesh Sinha
Akhilesh Sinha

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

Jaydeep Galani
Jaydeep Galani

Reputation: 4961

  • When you uninstall your app by default Asyncstorage data will be deleted.
  • For 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

Related Questions