@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
String id = getIntent().getExtras().getString("myparam");
Intent intent = new Intent(this, NewActivityToBeOpened.class);
intent.putExtra("myid", id);
startActivity(intent);
} However, when i click on the notification, the new Activity is not triggered. Basically, my debugger itself is not activated when i receive the notification. I've put my debug point in the onNewIntent method. So what can be the issue?