So on Unity I have a script that handles the AdMob ads. When I build and test the ad is there and clickable, but it is not visible.
I've tried literally everything. Made another ad, tried ads from previous projects that work in those projects, updated the plugin, downloaded new assets, tried different scripts, made sure nothing isn't on top of it... I have no clue what to do next. Below is the script. This currently applies the ad, but it is not visible. You can click it however.
`
BannerView bannerView;
string adID = "HERE-IS-MY-AD-ID";
// Use this for initialization
void Start ()
{
showBannerAd ();
}
private void showBannerAd()
{
bannerView = new BannerView (adID, AdSize.SmartBanner, AdPosition.Top);
AdRequest request = new AdRequest.Builder ().Build ();
bannerView.LoadAd (request);
bannerView.Show ();
}
public void Show()
{
bannerView.Show ();
}
public void Hide()
{
bannerView.Hide ();
}
} `