void CancelAllNotifications()
        {
            AN_NotificationManager.UnscheduleAll();
            AN_NotificationManager.CancelAll();
            _currentNotificationScheduleCue = 0;

            Debug.Log("Cancelling all scheduled local notifications");
        }
Exemple #2
0
 public void RemoveAllPendingNotifications()
 {
     AN_NotificationManager.UnscheduleAll();
 }