I can’t seem to get banner ads to work once built. However, in test mode they seem to be working fine. I decided to try using an IENumerator to help insure that a banner is loaded.
public static IEnumerator PauseBannerAd()
{
while (!Monetization.IsReady(pauseBanner))
{
yield return new WaitForSeconds(0.5f);
}
ShowAdPlacementContent ad = null;
ad = Monetization.GetPlacementContent(pauseBanner) as ShowAdPlacementContent;
if (ad != null)
{
ad.Show();
}
}
Then I try to request the ad like so:
SkitzAds.getAdType.StartCoroutine(SkitzAds.PauseBannerAd());
Like I said, I’ve tried various things but nothing seems to get these ads to show up. What could be the problem?
- Using Monetization 3.0 (The latest version)
- Yes the storeID is correct and placementID as well
- All other types of ads work except banner ads