Я использую push-уведомление центра приложений для форм Xamarin, но метод PushNotificationReceived не запускается, когда мое приложение закрывается и пользователь нажимает на уведомление.
Push.PushNotificationReceived += (sender, e) =>
{
if (e.CustomData != null)
{
foreach (var key in e.CustomData.Keys)
{
switch (key)
{
case "news":
notifType = key;
notifVal = e.CustomData[key];
break;
case "other":
notifType = key;
notifVal = e.CustomData[key];
break;
}
}
}
// Send the notification summary to debug output
}
};