In windows phone 8.1 all the notifications don't get clear when we open the app by tapping on the notification
So I am trying to clear my app's push notifications programmatically in the OnAppLaunched event
private void OnAppLaunched(object state)
{
var toastNotificationManager = Windows.UI.Notifications.ToastNotificationManager.History;
toastNotificationManager.Clear();
}
But it is not working from me. So can anyone help me with this ?