My question is really short. I have a game which has a reset class that resets all the objects. If I understand it correctly I only need one instance of the game activity at the same time. Since if Android created multiple instances of the activity it would be a waste of resources.
Is the changing of launchMode in Android a way to achieve this. Is it safe to use launchMode="singleInstance" to achieve this?