Flutter教程

AdMob Free

Contents

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.

https://github.com/ratson/cordova-plugin-admob-free

联系我们?

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.

Contact Us Today!

Ionic AdMob Free插件的安装(Installation)

ionic cordova plugin add cordova-plugin-admob-free npm install @ionic-native/admob-free
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/admob-free

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));