public void initSDK(string appid, AdProperties value) { if (value == null) { value = new AdProperties(); } jadmob.Call("initSDK", new object[] { appid, value.toString() }); }
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)); }
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() }); } }