public void RequestInterstitialNoShow(AdPlacementType placementId, AdsManager.InterstitialDelegate onAdLoaded = null, bool showLoading = true) { string id = CustomMediation.GetAdmobID(placementId, AdMobConst.INTERSTITIAL); RequestAdmobInterstitialNoShow(id, onAdLoaded, showLoading); }
public void Reward(AdPlacementType placementId, RewardDelegate onFinish) { string id = CustomMediation.GetAdmobID(placementId, AdMobConst.REWARD_ID); RewardAdmob(onFinish, id); }
public void ShowBanner(AdPlacementType placementId, AdsManager.InterstitialDelegate onAdLoaded = null) { string id = CustomMediation.GetAdmobID(placementId, AdMobConst.BANNER_ID); ShowBanner(id, AdSize.GetCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth(AdSize.FullWidth), 0f, onAdLoaded); }