Is it okay if we override OnDestroy() method in every activity of Android Application?
@Override
public void onDestroy() {
super.onDestroy();
}
Just by calling super.onDestroy() in onDestroy() Method, will it cleanup the memory resources?