I am using Firebase to generate a remote notification for my App.
My Activity chain is as follows
Splash Activity (Launchmode SingleTask, NoHistory = True)
calls
Login Activity (Launchmode Standard (default), NoHistory = True)
calls
Main Activity (Launchmode SingleTask, NoHistory = False)
If I place my App in the background (main activity has Paused) and rerun it from the desktop, the Resume event fires in the main activity and all is well.
However if I place the App in the background (main activity has Paused) and select a notification for the App from the Notification List on the desktop, the Splash Activity Create method fires.
How can I make the behaviour for Notification triggering be the same as for resuming from background. I dont want the user to login every time they click on a notification.
Thanks