コード例 #1
0
        // <summary>
        /// Was the stopSDK(boolean) API set to true.
        /// </summary>
        /// <returns>boolean isSDKStopped.</returns>
        public static bool isSDKStopped()
        {
#if UNITY_IOS && !UNITY_EDITOR
            return(AppsFlyeriOS.isSDKStopped());
#elif UNITY_ANDROID && !UNITY_EDITOR
            return(AppsFlyerAndroid.isSDKStopped());
#else
            return(false);
#endif
        }