コード例 #1
0
 public void OnNotificationCancelled(Flurry.FlurryMessage message)
 {
     Debug.Log("Flurry Messaging Notification Cancelled: " + message.Title);
 }
コード例 #2
0
 // If you would like to handle the notification yourself, return true to notify Flurry
 // you've handled it, and Flurry will not launch the app or "click_action" activity.
 public bool OnNotificationClicked(Flurry.FlurryMessage message)
 {
     Debug.Log("Flurry Messaging Notification Clicked: " + message.Title);
     return(false);
 }