Beispiel #1
0
 public void initSDK(string appid, AdProperties value)
 {
     if (value == null)
     {
         value = new AdProperties();
     }
     jadmob.Call("initSDK", new object[] { appid, value.toString() });
 }
Beispiel #2
0
 public void initSDK(string appid, AdProperties adProperties)
 {
     Debug.Log("calling init sdk");
     Debug.Log("bannerEventHandler==null ? " + (bannerEventHandler == null));
     Debug.Log("interstitialEventHandler==null ? " + (interstitialEventHandler == null));
     Debug.Log("rewardedVideoEventHandler==null ? " + (rewardedVideoEventHandler == null));
     Debug.Log("nativeBannerEventHandler==null ? " + (nativeBannerEventHandler == null));
 }
Beispiel #3
0
        public void initSDK(string appid, AdProperties value)
        {
            if (value == null)
            {
                value = new AdProperties();
            }
            string properties = value.toString();

            _kminitSDK(appid, properties, onAdmobEventCallBack);
        }
 public void initSDK(AdProperties value)
 {
     if (value == null)
     {
         value = new AdProperties();
     }
     if (jadmob != null)
     {
         jadmob.Call("initSDK", new object[] { value.toString() });
     }
 }