Exemplo n.º 1
0
 /// Called by the Google Cloud Messaging plugin to notify
 /// of a received push notification.
 public virtual void OnNotificationReceived(string notificationJson)
 {
     if (SDK != null && SDK.Initialised)
     {
         SDK.NotificationReceived(notificationJson);
     }
 }
 /// Called by the push plugin to notify
 /// of a received push notification.
 public virtual void OnNotificationReceived(string notificationJson)
 {
     if (SDK != null)
     {
         SDK.NotificationReceived(notificationJson);
     }
 }