我使用Ionic 4框架从事该项目,并使用了“无Admob”插件。
代码效果很好
.... constructor ... blah blah......
public platform: Platform) {
platform.ready().then(() => {
const bannerConfig: AdMobFreeBannerConfig = {
id: 'ca-app-pub-4911032478044140/xxxxxxxxx',
isTesting: false,
autoShow: true,
bannerAtTop: false
};
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));
});
}
但是,iOS和Android平台之间存在显示广告排名不同的问题。
我想将横幅位置定位到屏幕底部。 Android可以。顺便说一句,在iOS屏幕顶部显示横幅。
三天内找不到解决方案。救救我。
我想在iOS的屏幕底部增加免费的横幅位置。救救我〜