I have a Google AdMob Banner that I want to display on a custom position. The line below works just fine in my...
...
bannerView = new BannerView(adUnitId, AdSize.Banner, AdPosition.Bottom);
...
Though when I want to place the banner at a custom position it never displays on the screen. I am doing:
...
int w = 0;
int h = Screen.height/2;
bannerView = new BannerView(adUnitId, AdSize.Banner, w, -h);
...
What am I doing wrong?
Docs for AdMob Banner ad can be found here: https://developers.google.com/admob/unity/banner
Any help is much appreciated! :)