Esempio n. 1
0
        public override void OnCreate()
        {
            base.OnCreate();

            PushNotificationData notification = null;

            if (AppKitFirebaseMessagingService.HasStartUpNotification(out notification))
            {
                PushNotificationManager.Current.StorePendingNotification(notification);
            }
        }
Esempio n. 2
0
        public virtual void OnReceivedRemoteNotification(RemoteMessage message)
        {
            PushNotificationData notification = AppKitFirebaseMessagingService.GetNotificationData(message);

            OnReceivedRemoteNotification(notification);
        }