I try to create LUDO game and when user stop the game I want to save game state (Activity state).
I understood that I need to save state in method OnPause() but there are lots variables that I need to save and there are all changing in time so I am not sure that I can save state in that way.
So can I save the whole Activity and OnResume() method to restored it and just continue whith the game?
Thanks.