1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ionic4にAdMob Freeを設定する(Android)

Last updated at Posted at 2020-01-19

(AdMobのアプリIDの発行等は他の記事を参照してください...)

インストール

ionic cordova plugin add cordova-plugin-admob-free --variable ADMOB_APP_ID="事前に取得したAdMobAppID"
npm install @ionic-native/admob-free

使う

app.module.ts
...
import { AdMobFree } from '@ionic-native/admob-free/ngx'; //追加
...
providers:[
...
AdMobFree, //追加
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }]
...
使いたい場所(hoge.page.ts)
import { AdMobFree, AdMobFreeBannerConfig } from '@ionic-native/admob-free/ngx';
...
constructor(private admobFree:AdMobFree) {
    this.setads();
   }
...
setads() {
    const bannerConfig: AdMobFreeBannerConfig = {
      // add your config here
      id:'ca-app-pub-1919810/114514', //任意の広告ユニットID
      isTesting: true, //デバッグ時はオンにする
      autoShow: true
     };
     this.admobFree.banner.config(bannerConfig);
     
     this.admobFree.banner.prepare()
       .then(() => {
      
       })
       .catch(e => console.log(e));
  }
...

お疲れ様でした!

追記

表示されない場合は1週間ぐらい待つと表示されるようになるらしい...?

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?