public static void CancelAllNotifications()
    {
                #if UNITY_IPHONE
        NotificationCenter.CancelAllNotifications();
                #endif

                #if UNITY_ANDROID
        AndroidNotificationManager.Instance.CancelAllLocalNotifications();
                #endif
    }