コード例 #1
0
        public void setInterstitialCallbacks(IInterstitialAdListener listener)
        {
            AppodealAdsClient.interstitialListener = listener;

            AppodealObjCBridge.AppodealSetInterstitialDelegate(AppodealAdsClient.interstitialDidLoad,
                                                               AppodealAdsClient.interstitialDidFailToLoad,
                                                               AppodealAdsClient.interstitialDidClick,
                                                               AppodealAdsClient.interstitialDidDismiss,
                                                               AppodealAdsClient.interstitialWillPresent);
        }
コード例 #2
0
        public void setInterstitialCallbacks(IInterstitialAdListener listener)
        {
            interstitialListener = listener;

            AppodealObjCBridge.AppodealSetInterstitialDelegate(
                interstitialDidLoad,
                interstitialDidFailToLoad,
                interstitialDidClick,
                interstitialDidDismiss,
                interstitialWillPresent,
                interstitialDidExpired
                );
        }
コード例 #3
0
 public void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     getAppodealClass().CallStatic("setInterstitialCallbacks", new AppodealInterstitialCallbacks(listener));
 }
コード例 #4
0
ファイル: Appodeal.cs プロジェクト: svekr/appodeal-test
 public static void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
                 #if UNITY_ANDROID && !UNITY_EDITOR || UNITY_IPHONE && !UNITY_EDITOR
     getInstance().setInterstitialCallbacks(listener);
                 #endif
 }
コード例 #5
0
 public static void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     getInstance().setInterstitialCallbacks(listener);
 }
コード例 #6
0
 public void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     Debug.Log("Call to Appodeal.setInterstitialCallbacks on not supported platform");
 }
コード例 #7
0
 public void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     Debug.Log("Call to Appodeal.setInterstitialCallbacks on not supported platform. To test advertising, install your application on the Android/iOS device.");
 }
コード例 #8
0
ファイル: Appodeal.cs プロジェクト: tobynextdoor/Rocket-Wars
 public static void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     #if UNITY_ANDROID && !UNITY_EDITOR || UNITY_IPHONE && !UNITY_EDITOR
     getInstance().setInterstitialCallbacks (listener);
     #endif
 }
コード例 #9
0
ファイル: AppodealAdsClient.cs プロジェクト: taboo1/arena
        public void setInterstitialCallbacks(IInterstitialAdListener listener)
        {
            AppodealAdsClient.interstitialListener = listener;

            AppodealObjCBridge.AppodealSetInterstitialDelegate(AppodealAdsClient.interstitialDidLoad,
                                                               AppodealAdsClient.interstitialDidFailToLoad,
                                                               AppodealAdsClient.interstitialDidClick,
                                                               AppodealAdsClient.interstitialDidDismiss,
                                                               AppodealAdsClient.interstitialWillPresent);
        }
コード例 #10
0
		internal AppodealInterstitialCallbacks(IInterstitialAdListener listener) : base("com.appodeal.ads.InterstitialCallbacks") {
			this.listener = listener;
		}
コード例 #11
0
ファイル: Appodeal.cs プロジェクト: yarus777/PingPong
 public static void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     #if !UNITY_EDITOR
     getInstance().setInterstitialCallbacks (listener);
     #endif
 }
コード例 #12
0
 internal AppodealInterstitialCallbacks(IInterstitialAdListener listener) : base(
         "com.appodeal.ads.InterstitialCallbacks")
 {
     this.listener = listener;
 }
コード例 #13
0
ファイル: AndroidAppodealClient.cs プロジェクト: taboo1/arena
 public void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
     getAppodealClass().CallStatic("setInterstitialCallbacks", new AppodealInterstitialCallbacks(listener));
 }
コード例 #14
0
 public static void setInterstitialCallbacks(IInterstitialAdListener listener)
 {
                 #if !UNITY_EDITOR
     getInstance().setInterstitialCallbacks(listener);
                 #endif
 }