Ionic 2 banner is not visiable after publishing on play store?

百般思念 提交于 2020-01-05 04:06:32

问题


Ionic 2 banner is not visiable after publishing on play store. Its just a black box bottom of the screen. Not sure what is the problem

if( /(android)/i.test(navigator.userAgent) ) { // for android & amazon-fireos
          console.log('in here');
          this.admobid = {
            banner: 'ca-app-pub-3767919174603479/5466077284'
          };
        }

        if(AdMob) AdMob.createBanner({
          adId: this.admobid.banner,
          position: AdMob.AD_POSITION.BOTTOM_CENTER,
          autoShow: true
        });

来源:https://stackoverflow.com/questions/42456137/ionic-2-banner-is-not-visiable-after-publishing-on-play-store

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!