示例#1
0
        public void setMrecCallbacks(IMrecAdListener listener)
        {
            mrecListener = listener;

            AppodealObjCBridge.AppodealSetMrecViewDelegate(
                mrecViewDidLoadAd,
                mrecViewDidFailToLoadAd,
                mrecViewDidClick,
                mrecViewDidExpired);
        }
示例#2
0
 public static void setMrecCallbacks(IMrecAdListener listener)
 {
     getInstance().setMrecCallbacks(listener);
 }
示例#3
0
 public void setMrecCallbacks(IMrecAdListener listener)
 {
     Debug.Log("Call to Appodeal.setMrecCallbacks on not supported platform");
 }
示例#4
0
 public void setMrecCallbacks(IMrecAdListener listener)
 {
     Debug.Log("Call to Appodeal.setMrecCallbacks on not supported platform. To test advertising, install your application on the Android/iOS device.");
 }
示例#5
0
 public void setMrecCallbacks(IMrecAdListener listener)
 {
     getAppodealClass().CallStatic("setMrecCallbacks", new AppodealMrecCallbacks(listener));
 }
示例#6
0
 internal AppodealMrecCallbacks(IMrecAdListener listener) : base("com.appodeal.ads.MrecCallbacks")
 {
     this.listener = listener;
 }