Reputation: 5135
Considering that I have an application in the App Store/Google Play, which will locally save some data in AsyncStorage (React-Native) depending on the user interaction, what will happen with that data if I make an updated version of the app and push it to the App Store/Google Play?
It will still be saved in AsyncStorage?
Upvotes: 0
Views: 344
Reputation: 1275
if you are saving data in your document directory then after updation it will still remain as same. you can overwrite or use save same data. you can also make new directory for new version data also.
Upvotes: 1