Пример #1
0
        public override void OnCreate()
        {
            base.OnCreate();

            PushNotificationData notification = null;

            if (AppKitFirebaseMessagingService.HasStartUpNotification(out notification))
            {
                PushNotificationManager.Current.StorePendingNotification(notification);
            }
        }
Пример #2
0
        public virtual void OnReceivedRemoteNotification(RemoteMessage message)
        {
            PushNotificationData notification = AppKitFirebaseMessagingService.GetNotificationData(message);

            OnReceivedRemoteNotification(notification);
        }