Admob integration

Hello!

I want to install a banner (plugin) from the Google ADMOB network, how can I do this?

Thanks )

I am do it !
I am insert admob

were you able to find a workaround? I’m having a similar issue.

Isso te ajuda?

What is the access point/ instance of cordova plugins?

I tried $this.admob, window.admob and wasn’t able to get access to it. Was wondering if you had any insight on how to properly access admob instance. Thanks!

1 Like

Here you have a quick example


But of what i read, i think you have admob in

AdMob

// ex:
AdMob.createBanner( admobid.banner );

Api doc:

AdMob.setOptions(options);

AdMob.createBanner(adId/options, success, fail);
AdMob.removeBanner();
AdMob.showBanner(position);
AdMob.showBannerAtXY(x, y);
AdMob.hideBanner();

AdMob.prepareInterstitial(adId/options, success, fail);
AdMob.showInterstitialAd();
AdMob.isInterstitialReady(callback)
1 Like

still using plugin from floatinghotpot ? he stolen ur money from ur traffic. lmao

1 Like

Thanks!, This information helped me a lot.
a correction, the method is not:
AdMob.showInterstitialAd();
is:
AdMob.showInterstitial(); (without Ad)

1 Like