横幅未显示我的身份来自adMob Ionic 3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了横幅未显示我的身份来自adMob Ionic 3相关的知识,希望对你有一定的参考价值。
当我尝试使用此代码在我的设备中运行我的应用程序时:
ionic cordova build android
它生成了一个APK,我安装在我的设备中。当我使用此代码构建时,广告的工作原理是:
showAd() {
const bannerConfig: AdMobFreeBannerConfig = {
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));
}
当我使用其他代码构建时,广告不显示:
showAd() {
const bannerConfig: AdMobFreeBannerConfig = {
id: 'MY-ID-FROM-ADMOB',
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));
}
有人帮帮我,拜托......
对不起,如果我写错了什么,我的英语不是很好......
感谢suzan的分享,但它不是解决方案。 3天后,我终于成功发布了我的应用广告。
- 我搜索了很多解决方案,在这篇文章中:ionic-3-admob-free-not-displaying-ads-when-testing-is-false说我需要在付款页面上添加我的地址。
- 在cordova-plugin-admob-free网站上,我读到我需要在config.xml中添加此代码:
<plugin name="cordova-admob-sdk" spec="~0.13.1">
<variable name="PLAY_SERVICES_VERSION" value="11.6.0" />
</plugin>
- 我测试了这个adID:ca-app-pub-3940256099942544/6300978111,这个adId可以在google test Ads网站找到,并且有效!
- 当我测试我的adId显示黑色矩形而不是广告时,我忽略它,因为在google Admob FAQ中说:当新应用程序在AdMob注册时,可能需要一段时间才能工作。 (总结)
- 当我在Play商店发布时,广告正在展示!!
谢谢所有=)
好吧,使用新的adMob广告ID展示广告需要一段时间。
你应该从admob配置中删除isTesting
。
showAd() {
const bannerConfig: AdMobFreeBannerConfig = {
id: 'MY-ID-FROM-ADMOB',
autoShow: true
};
this.admobFree.banner.config(bannerConfig);
this.admobFree.banner.prepare()
.then(() => {
// banner Ad is ready
})
.catch(e => console.log(e));
}
可能需要几天或一天
以上是关于横幅未显示我的身份来自adMob Ionic 3的主要内容,如果未能解决你的问题,请参考以下文章