I am confused as where to save unsaved data and release resources taken by my app. I read that I should save unsaved state in onPause and to release resources used by my app in onStop. I also now that I should not use onDestroy as I cannot predict Android will ever call it.
This is the theory. But I was passing a test and I saw this question. However, it was single-choice question and these 3 methods were offered.
Now I wonder, have I done wrong in the past? Do I really save data and release resources in only one method? Which one - onStop maybe?