Rob Goodwin
Rob Goodwin

Reputation: 13

Ionic 4 - cordova-admob-pro won't show ads after uploaded

Trying to show banner Ads in my app

The Behavior

My Configuration

In my home.ts file...

      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

Answers (1)

Rob Goodwin
Rob Goodwin

Reputation: 13

Ok... A day later the ads started showing up.

Upvotes: 0

Related Questions