Currently after click on notification I run new activity of my app
Intent notifyIntent = new Intent(this, MainActivity.class);
PendingIntent intent = PendingIntent.getActivity(
this, 0, notifyIntent, PendingIntent.FLAG_UPDATE_CURRENT
);
and in Notification Builer:
.setContentIntent(intent)
But this is always new activity.
I want to get my old activity from backstack after click on notification.
Is it possible ?