예제 #1
0
    /// <summary>
    /// Check if the user has opted out of Crittercism.  If a user is opted out, then no data will be
    /// sent to Crittercism.
    /// </summary>
    /// <returns>True if the user has opted out of Crittercism</returns>
    public static bool GetOptOut()
    {
#if UNITY_IOS
        return(CrittercismIOS.GetOptOut());
#elif UNITY_ANDROID
        return(CrittercismAndroid.GetOptOut());
#else
        return(true);
#endif
    }
예제 #2
0
 public static bool GetOptOut()
 {
     return(CrittercismAndroid.GetOptOut());
 }