Example #1
0
        static void ReceivedPushNotificationFunc(IntPtr notification)
        {
            var eventArgs = PushNotificationHelper.PushConvert(notification);

            Push.NotifyPushNotificationReceived(eventArgs);
        }
Example #2
0
        void onPushNotificationReceived(AndroidJavaObject activity, AndroidJavaObject pushNotification)
        {
            var eventArgs = PushNotificationHelper.PushConvert(pushNotification);

            Push.NotifyPushNotificationReceived(eventArgs);
        }