if (Device.RuntimePlatform == Device.Android) { CrossFirebasePushNotification.Current.OnNotificationReceived += (s, p) => { if (!IsBackgrounded) { string title = "title", body = "body"; NotificationManager.ScheduleNotification(p.Data[title].ToString(), p.Data[body].ToString()); } }; }