Ionic Admob Not working After setting isTesting:false

I am working on Admob Integration, Admob Test ads is working, But When I set it to IsTesting:False then it does not me any ads, Can You please help me, I am stucking from last 2 weeks.
const bannerConfig: AdMobFreeBannerConfig = {
// add your config here
// for the sake of this example we will just use the test config
id:“ca-app-pub-8702213124475925/6486447106”,
isTesting: false,
autoShow: true
};
this.admobFree.banner.config(bannerConfig);

 this.admobFree.banner.prepare()
   .then(() => {
     // banner Ad is ready
     // if we set autoShow to false, then we will need to call the show method here
   })
   .catch(e => console.log(e));

}

This is my Code

Any solutions? am stuck too

I did not get any solution yet, Did you find any solution?

Yes, After filling payment info in admob website ads started to show

I already filled payment information but still not showing any ads except test ads

did you create ad unit?

Yes, I created already.

can you share the snippet of your ad display code?

import { Component } from ‘@angular/core’;
import { NavController } from ‘ionic-angular’;
import { AdMobFree, AdMobFreeBannerConfig, AdMobFreeInterstitialConfig } from ‘@ionic-native/admob-free’;
@Component({
selector: ‘page-home’,
templateUrl: ‘home.html’
})
export class HomePage {

constructor(public navCtrl: NavController,public admobFree:AdMobFree) {
this.ShowBannerAd();
}
ShowBannerAd(){
const bannerConfig: AdMobFreeBannerConfig = {
// add your config here
// for the sake of this example we will just use the test config
id:“ca-app-pub-6794621608321846/6835933873”,
isTesting: true,
autoShow: true
};
this.admobFree.banner.config(bannerConfig);

 this.admobFree.banner.prepare()
   .then(() => {
     // banner Ad is ready
     // if we set autoShow to false, then we will need to call the show method here
   })
   .catch(e => console.log(e));

}

launchInterstitial() {

let interstitialConfig: AdMobFreeInterstitialConfig = {
  id:"ca-app-pub-1177154920708804~9875900884",
   
    autoShow: true
    //id: Your Ad Unit ID goes here
}; 

this.admobFree.interstitial.config(interstitialConfig);

this.admobFree.interstitial.prepare().then(() => {
    // success
});

}

}

Yes…please …I am stuck from many days

Yes…please …I am stuck from many days

You got the answer? your code is right.do you get any error message?can you share the version of the plugin you are using.