Android: onDestroy() or similar method in Application class

There is no such call back on a production device for the Application class.

The things you want to do should usually be done right after the changes are made, or in the onPause() of the respective app component.

Leave a Comment