Reputation: 13
Trying to show banner Ads in my app
constructor(...,...,...,){
platform.ready().then(() => {
this.loadBanner();
});
}
loadBanner(){
let adId = 'ca-app-pub-634383******/*****';
this.admob.createBanner({adId: adId})
.then(() => { this.admob.showBanner(8); });
}
I get no errors or warnings of any kind. Does anyone have ideas what's going on? My ads have been active in Admob for 3 or 4 weeks, so it's not a timing thing.
What's happening during the upload process that causes the admob plugin to fail? Everything else in the app works as expected.
Thanks
Upvotes: 0
Views: 502