Updating Android Game Question

So I am working on this game that I plan to update regularly, New levels etc.

But I want to make sure when players do update they wont lose their progress. Like coins or high-score whatever.

Is there certain precautions I need to take to avoid any problems?

There shouldn’t be any way that the player save gets deleted unless the completely uninstall the game. If you want to have a backup, you can set up an account system with firebase and store a backup of the players’ saves on the firebase cloud firestore database.

1 Like

Okay cool.
Thanks bro.