UNPKG

admob-google

Version:

AdMob plugin. Android Google Play Services SDK, iOS SDK v7.13.1.

320 lines (240 loc) 14.2 kB
*<p style="font-size: small;" align="right"><a style="color:#232323" color="#232323" href="http://appfeel.com">Made in Barcelona with <span color="#FCB">Love</span> and <span color="#BBCCFF">Code</span></a></p>* Cordova AdMob plugin<br>[![License][license]][npm-url] [![NPM version][npm-version]][npm-url] [![NPM downloads][npm-downloads]][npm-url] ==================== [npm-url]: https://www.npmjs.com/package/cordova-admob [license]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat [npm-version]: https://img.shields.io/npm/v/cordova-admob.svg?style=flat [npm-downloads]: https://img.shields.io/npm/dm/cordova-admob.svg?style=flat ## It simply works :) Monetize your Cordova/Phonegap/XDK HTML5 hybrid apps and games with AdMob ads, **using latest Google AdMob SDK**. - Now available with Ionic Native too - Supports banner, interstitials and rewarded - Optional [Tappx](http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6) backfill With this Cordova/Phonegap/XDK plugin you can show AdMob ads as easy as: ```js admob.createBannerView({publisherId: "ca-app-pub-XXXXXXXXXXXXXXXX/BBBBBBBBBB"}); ``` ![Integrate cordova admob plugin](https://github.com/appfeel/admob-google-cordova/wiki/demo/integrate-admob-cordova.gif) --- ## Plugin update (phonegap/cordova cli) ## `cordova-admob~4.1.15` and later are now updated to latest SDK's (ios 7.13.1 and later, android managed by gradle) To update the plugin you should remove the plugin and add it again: ``` $ cordova plugin rm cordova-admob $ npm cache clear $ cordova plugin add cordova-admob ``` Sometimes removing the plugin causes an error (it's been reported to cordova https://issues.apache.org/jira/browse/CB-12083). If that happens, remove first `cordova-libgoogleadmobads` manually: ``` $ rm plugins/cordova-libgoogleadmobads/ -rf $ cordova plugin rm cordova-admob $ npm cache clear $ cordova plugin add cordova-admob ``` --- ## Testimonials ## * [Visual Scale Android](https://play.google.com/store/apps/details?id=com.appfeel.visualanalogscale), [Visual Scale iOS](https://itunes.apple.com/app/id940214847?mt=8), a free app to help doctors and physiotherapists in their daily work: > It was really easy to integrate, thanks. * [Military Quotes Android](https://play.google.com/store/apps/details?id=com.covernator.fb.military.quotes), an interesting free app for those interested in images and quotes from US Military. > It works like a charm. Test ads and real ads show up. Thanks so much for following up, awesome support. <br><br> **[Place your testimonial here](https://github.com/appfeel/admob-google-cordova/issues)** --- ## Platform SDK supported ## * iOS, using AdMob SDK for iOS, v7.13.1 * Android, using latest Google Play Services for Android (managed by gradle) --- ## Demo projects: ## - [Intel XDK](https://github.com/appfeel/admob-google-xdk) - [Cordova/PhoneGap CLI](https://github.com/appfeel/admob-google-demo) - [PhoneGap Build](https://github.com/appfeel/admob-phonegap-build-demo) --- ## Quick start ## To install this plugin, follow the [Command-line Interface Guide](http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface). You can use one of the following command lines: * `cordova plugin add cordova-admob` * `cordova plugin add https://github.com/appfeel/admob-google-cordova.git` To use in [Phonegap Build](https://build.phonegap.com), place the following tag in your `config.xml` file: ```xml <gap:plugin name="phonegap-admob" source="npm"/> ``` To start showing ads, place the following code in your `onDeviceReady` callback. Replace corresponding id's with yours: *Note: ensure you have a proper [AdMob](https://apps.admob.com/admob/signup) and [tappx](http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6) accounts and get your publisher id's*. ```javascript function onDeviceReady() { document.removeEventListener('deviceready', onDeviceReady, false); // Set AdMobAds options: admob.setOptions({ publisherId: "ca-app-pub-XXXXXXXXXXXXXXXX/BBBBBBBBBB", // Required interstitialAdId: "ca-app-pub-XXXXXXXXXXXXXXXX/IIIIIIIIII", // Optional autoShowBanner: true, // Optional autoShowRInterstitial: false, // Optional autoShowRewarded: false, // Optional tappxIdiOS: "/XXXXXXXXX/Pub-XXXX-iOS-IIII", // Optional tappxIdAndroid: "/XXXXXXXXX/Pub-XXXX-Android-AAAA", // Optional tappxShare: 0.5 // Optional }); // Start showing banners (atomatic when autoShowBanner is set to true) admob.createBannerView(); // Request interstitial ad (will present automatically when autoShowInterstitial is set to true) admob.requestInterstitialAd(); // Request rewarded ad (will present automatically when autoShowRewarded is set to true) admob.requestRewardedAd(); } document.addEventListener("deviceready", onDeviceReady, false); ``` If you don't specify tappxId, no tappx requests will be placed (even if you specify a tappxShare). [See Tappx configuration](https://github.com/appfeel/admob-google-cordova/wiki/Tappx-configuration) for more detailed info. :warning: Be sure to start ads on "deviceready" event otherwise, the plugin would not work. --- ## Full documentation ## Visit the [wiki](https://github.com/appfeel/admob-google-cordova/wiki) of Google AdMob Cordova plugin. Table of contents: * [Home](https://github.com/appfeel/admob-google-cordova/wiki) * [Table of contents](https://github.com/appfeel/admob-google-cordova/wiki/Table-of-contents) * [Change Log](https://github.com/appfeel/admob-google-cordova/wiki/Change-Log) * [Testimonials](https://github.com/appfeel/admob-google-cordova/wiki/Testimonials) * [Setup](https://github.com/appfeel/admob-google-cordova/wiki/Setup) * [Angular.js, Ionic apps](https://github.com/appfeel/admob-google-cordova/wiki/Angular.js,-Ionic-apps) * [Tappx configuration](https://github.com/appfeel/admob-google-cordova/wiki/Tappx-configuration) * [Javascript API](https://github.com/appfeel/admob-google-cordova/wiki/Javascript-API) * [setOptions](https://github.com/appfeel/admob-google-cordova/wiki/setOptions) * Banners * [createBannerView](https://github.com/appfeel/admob-google-cordova/wiki/createBannerView) * [showBannerAd](https://github.com/appfeel/admob-google-cordova/wiki/showBannerAd) * [destroyBannerView](https://github.com/appfeel/admob-google-cordova/wiki/destroyBannerView) * Interstitials * [requestInterstitialAd](https://github.com/appfeel/admob-google-cordova/wiki/requestInterstitialAd) * [showInterstitialAd](https://github.com/appfeel/admob-google-cordova/wiki/showInterstitialAd) * Rewarded * [requestRewardedAd](https://github.com/appfeel/admob-google-cordova/wiki/requestRewardedAd) * [showRewardedAd](https://github.com/appfeel/admob-google-cordova/wiki/showRewardedAd) * [Events](https://github.com/appfeel/admob-google-cordova/wiki/Events) * [onAdLoaded](https://github.com/appfeel/admob-google-cordova/wiki/Events#admobeventsonadloaded) * [onAdFailedToLoad](https://github.com/appfeel/admob-google-cordova/wiki/Events#admobeventsonadfailedtoload) * [onAdOpened](https://github.com/appfeel/admob-google-cordova/wiki/Events#admobeventsonadopened) * [onAdClosed](https://github.com/appfeel/admob-google-cordova/wiki/Events#admobeventsonadclosed) * [onAdLeftApplication](https://github.com/appfeel/admob-google-cordova/wiki/Events#admobeventsonadleftapplication) * [Complete example code](https://github.com/appfeel/admob-google-cordova/wiki/Complete-example-code) * [Contributing](https://github.com/appfeel/admob-google-cordova/wiki/Contributing) * [Screenshots](https://github.com/appfeel/admob-google-cordova/wiki/Screenshots) --- ## Complete example code ## Note that the admob ads are configured inside `onDeviceReady()`. This is because only after device ready the AdMob Cordova plugin will be working. ```javascript var isAppForeground = true; function initAds() { if (admob) { var adPublisherIds = { ios : { banner : "ca-app-pub-XXXXXXXXXXXXXXXX/BBBBBBBBBB", interstitial : "ca-app-pub-XXXXXXXXXXXXXXXX/IIIIIIIIII" }, android : { banner : "ca-app-pub-XXXXXXXXXXXXXXXX/BBBBBBBBBB", interstitial : "ca-app-pub-XXXXXXXXXXXXXXXX/IIIIIIIIII" } }; var admobid = (/(android)/i.test(navigator.userAgent)) ? adPublisherIds.android : adPublisherIds.ios; admob.setOptions({ publisherId: admobid.banner, interstitialAdId: admobid.interstitial, autoShowBanner: true, autoShowInterstitial: false, autoShowRewarded: false, tappxIdiOS: "/XXXXXXXXX/Pub-XXXX-iOS-IIII", tappxIdAndroid: "/XXXXXXXXX/Pub-XXXX-Android-AAAA", tappxShare: 0.5, }); registerAdEvents(); } else { alert('AdMobAds plugin not ready'); } } function onAdLoaded(e) { if (isAppForeground) { if (e.adType === admob.AD_TYPE.AD_TYPE_BANNER) { console.log("New banner received"); } else if (e.adType === admob.INTERSTITIAL) { console.log("An interstitial has been loaded and autoshown. If you want to automatically show the interstitial ad, set 'autoShowInterstitial: true' in admob.setOptions() or remove it"); admob.showInterstitialAd(); } else if (e.adType === admob.AD_TYPE_REWARDED) { console.log("New rewarded ad received"); admob.showRewardedAd(); } } } function onPause() { if (isAppForeground) { admob.destroyBannerView(); isAppForeground = false; } } function onResume() { if (!isAppForeground) { setTimeout(admob.createBannerView, 1); setTimeout(admob.requestInterstitialAd, 1); isAppForeground = true; } } // optional, in case respond to events function registerAdEvents() { document.addEventListener(admob.events.onAdLoaded, onAdLoaded); document.addEventListener(admob.events.onAdFailedToLoad, function (e) {}); document.addEventListener(admob.events.onAdOpened, function (e) {}); document.addEventListener(admob.events.onAdClosed, function (e) {}); document.addEventListener(admob.events.onAdLeftApplication, function (e) {}); document.addEventListener("pause", onPause, false); document.addEventListener("resume", onResume, false); } function onDeviceReady() { document.removeEventListener('deviceready', onDeviceReady, false); initAds(); // display a banner at startup admob.createBannerView(); // request an interstitial ad admob.requestInterstitialAd(); // request a rewarded ad admob.requestRewardedAd(); } document.addEventListener("deviceready", onDeviceReady, false); ``` --- ## Contributing ## You can use this cordova plugin for free. You can contribute to this project in many ways: * Testimonials of apps that are using this plugin gives your app free marketing and will be especially helpful. [Open an issue](https://github.com/appfeel/admob-google-cordova/issues). * Register to [tappx](http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6) by using this link: http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6. It is our Guess-Link and for each affiliate we will get 50k tappix (free exchange ads). * [Reporting issues](https://github.com/appfeel/admob-google-cordova/issues). * Patching and bug fixing, especially when submitted with test code. [Open a pull request](https://github.com/appfeel/admob-google-cordova/pulls). * Other enhancements. You can also support this project by sharing 2% Ad traffic (it's not mandatory: if you are unwilling to share, please fork and remove the donation code). Love the project? Wanna buy me a coffee (or a beer :D)? [Click here](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ELWJTK68B9A54&item_name=AppFeel+admob+for+cordova&item_number=com%2eadmob%2egoogle) --- ## Screenshots ## #### iPhone: <img src="https://github.com/appfeel/admob-google-cordova/wiki/demo/iphone.png" border="10" alt="Phonegp Cordova admob plugin in iPhone" /> #### iPad Banner Portrait: <img src="https://github.com/appfeel/admob-google-cordova/wiki/demo/banner-ipad.png" border="10" alt="Phonegp Cordova admob plugin in iPad" /> #### iPad Banner Landscape: <img src="https://raw.githubusercontent.com/wiki/appfeel/admob-google-cordova/demo/banner-landscape-ipad.png" border="10" alt="Phonegp Cordova banner admob plugin" /> --- ## License ## ``` The MIT License Copyright (c) 2014 AppFeel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ``` --- ## Credits ## * [appFeel](http://www.appfeel.com)