When my app crashes for any reason onDestroy()
method is not called. My notification is also not removed. Where should notifi.cancel(1);
method be called to remove the notification whenever the app crashes?
@Override
protected void onDestroy() {
super.onDestroy();
if (nm != null) {
nm.cancel(0);
}
}