示例#1
0
    /// <summary>
    /// Reporting uncaught C# Exception's as crashes (red blips)?
    /// </summary>
    public static bool GetLogUnhandledExceptionAsCrash()
    {
#if UNITY_IOS
        return(CrittercismIOS.GetLogUnhandledExceptionAsCrash());
#elif UNITY_ANDROID
        return(CrittercismAndroid.GetLogUnhandledExceptionAsCrash());
#else
        return(false);
#endif
    }
示例#2
0
 public static bool GetLogUnhandledExceptionAsCrash()
 {
     return(CrittercismAndroid.GetLogUnhandledExceptionAsCrash());
 }