コード例 #1
0
ファイル: HeyzapAds.cs プロジェクト: raju-appxart/EggDrop
        /// <summary>
        /// Shows the mediation test suite.
        /// </summary>
        public static void ShowMediationTestSuite()
        {
            #if UNITY_ANDROID
            HeyzapAdsAndroid.ShowMediationTestSuite();
            #endif

            #if UNITY_IPHONE && !UNITY_EDITOR
            HeyzapAdsIOS.ShowMediationTestSuite();
            #endif
        }
コード例 #2
0
 /// <summary>
 /// Shows the mediation test suite.
 /// </summary>
 public static void ShowMediationTestSuite()
 {
     #if !UNITY_EDITOR && (UNITY_ANDROID || UNITY_IPHONE)
         #if UNITY_ANDROID
     HeyzapAdsAndroid.ShowMediationTestSuite();
         #elif UNITY_IPHONE
     HeyzapAdsIOS.ShowMediationTestSuite();
         #endif
     #else
     UnityEngine.Debug.LogWarning("Call received to show the Heyzap SDK test suite, but the SDK does not function in the editor. You must use a device/emulator to use the test suite.");
     #endif
 }