AdMob Free
A free, no ad-sharing version of Google AdMob plugin for Cordova.
Requires Cordova plugin: cordova-plugin-admob-free
. For more info, please see the AdMob Free plugin docs.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic AdMob Free插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic AdMob Free插件支持的平台(Supported Platforms)
- Android
- iOS
Ionic AdMob Free插件的用法(Usage)
import { AdMobFree, AdMobFreeBannerConfig } from '@ionic-native/admob-free/ngx';
constructor(private admobFree: AdMobFree) { }
...
const bannerConfig: AdMobFreeBannerConfig = {
// add your config here
// for the sake of this example we will just use the test config
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));