Reputation: 4571
Are the settings stored by a Windows Phone 8 app saved when the app gets updated through AppStore?
Upvotes: 3
Views: 1858
Reputation: 906
IsolatedStorageSettings provide a convenient way to store user specific data as key-value pairs in a local IsolatedStorageFile with an lifespan of the application. You can find more about IsolatedStorageSettings Class.
So the answer is that Windows Phone app will save any data saved after app update. If you uninstall app you lose all your data from IsolatedStorageSettings.
Upvotes: 4