当我将isTesting
更改为 true 时,这是展示广告。
但是isTesting
false 没有展示任何广告。
现在已经超过2周,我创建了这个app
ionViewWillEnter(){
const bannerConfig: AdMobFreeBannerConfig = {
// add your config here
// for the sake of this example we will just use the test config
id:'ca-app-pub-2918131140221237/6186694665',
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));
}