Is this possible? With iOS (APNS), it seems to work this way. With GCM, it doesn't seem to. When my app is running, and I see my notification icon on top, if I touch/pull down the notification, everything works great, I want to update a screen (the given activity) without having to do that. When I send the notification from my Listener service, I do:
intent.AddFlags(ActivityFlags.ClearTop);
I tried intent.SetFlags(ActivityFlags.NewTask), but that doesn't send any notifications.
How can I have it work like APNS, where it just automatically updates the screen if the app is running? Is it just a flag somewhere?
Thanks