public static void cancelAll()
 {
     NotificationTracker.CancelAll();
 }
        /// <summary>
        /// Cancel all tracked notifications.
        /// By defauld all notifications scheduled with AndroidNotifications.scheduleNotification() are tracked
        /// </summary>
        public static void cancelAll()
        {
#if UNITY_ANDROID && !UNITY_EDITOR
            NotificationTracker.CancelAll();
#endif
        }