I have no idea how app updates in the various app stores work. Let’s say I put out a new app in an app store like from version 1.0 to version 1.1 and add some new levels or fix some bugs. Can someone explain how the new code is deployed and how it might effect the saved game state of the current user?
Currently, I am using GGdata to save a person’s gamestate to a json file and then just read it back in when the game starts again. But if the app in un-installed all the gamestate info gets deleted with it.
I need to understand what happens when a game is updated and not re-installed. What are people doing to save the current state a user. This assumes of course that I don’t have a remove server active to pull user data from.
L