public static void CancelNotification(int id)
    {
                #if UNITY_IPHONE
        NotificationCenter.CancelUserNotificationById(id.ToString());
                #endif

                #if UNITY_ANDROID
        AndroidNotificationManager.Instance.CancelLocalNotification(id);
                #endif
    }