user3475724
user3475724

Reputation:

How to save user's data when game is updated to the new version?

How to save user's data when game is updated to the new version? I assume, that it's only possible for games with server-side, isn't it?

Upvotes: 1

Views: 65

Answers (2)

Gismay
Gismay

Reputation: 804

You've tagged the question with "android" and "iOS". I don't know Android, but in iOS, data saved to NSUserdefaults is not lost after an update. You could also save to a file in your apps documents folder. As long as the app wasn't deleted, you won't lose data.

Upvotes: 1

Oleg Gordiichuk
Oleg Gordiichuk

Reputation: 15512

Hi to save data of the user it is better to use server-side because you can avoid with it, problems that are connected with in-app purchases and for user it is easy to change devices but be up to date with game.And you can easy manage all data that is required.

Upvotes: 0

Related Questions