离子广告仅显示测试广告

时间:2019-12-26 10:31:39

标签: ionic-framework admob

当我将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));
  }

0 个答案:

没有答案