Skip to content

Enhanced AdMob Plugin for PhoneGap and Cordova, Most Flexible. Banner and Interstitial. Any size, Any position. Latest SDK for iOS and Android with Google Play Services.

License

Notifications You must be signed in to change notification settings

KevinGurden/cordova-admob-pro

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AdMob Plugin Pro

Present AdMob Ads in Mobile App/Games natively from JavaScript.

Highlights:

  • Support Banner Ad and Interstitial Ad.
  • Multiple banner size, also support custom size.
  • Fixed and overlapped mode.
  • Most flexible, put banner at any position with overlap mode.
  • Auto fit on orientation change.
  • Latest iOS SDK v6.11.1,
  • Latest Android Google play services r19.
  • Compatible with Intel XDK and Crosswalk.
  • Easy-to-use APIs. Can display Ad with single line of Js code.
  • Actively maintained, prompt support.

How to use?

If use with Cordova CLI:

cordova plugin add com.google.cordova.admob

If use with Intel XDK: Project -> CORDOVA 3.X HYBRID MOBILE APP SETTINGS -> PLUGINS AND PERMISSIONS -> Third-Party Plugins -> Add a Third-Party Plugin -> Get Plugin from the Web, input:

Name: AdMobPluginPro
Plugin ID: com.google.cordova.admob
[x] Plugin is located in the Apache Cordova Plugins Registry

Quick Start Example Code

Step 1: Prepare your AdMob Ad Unit Id for your banner and interstitial

var ad_units = {
	ios : {
		banner: 'ca-app-pub-xxx/xxx',
		interstitial: 'ca-app-pub-xxx/yyy'
	},
	android : {
		banner: 'ca-app-pub-xxx/zzz',
		interstitial: 'ca-app-pub-xxx/kkk'
	}
};
// select the right Ad Id according to platform
var admobid = ( /(android)/i.test(navigator.userAgent) ) ? ad_units.android : ad_units.ios;

Step 2: Create a banner with single line of javascript

// it will display smart banner at top center, using the default options
if(AdMob) AdMob.createBanner( admobid.banner );

Or, show the banner Ad in some other way:

// or, show a banner at bottom
if(AdMob) AdMob.createBanner( {
	adId:admobid.banner, 
	position:AdMob.AD_POSITION.BOTTOM_CENTER, 
	autoShow:true} );

// or, show a rect ad at bottom in overlap mode
if(AdMob) AdMob.createBanner( {
	adId:admobid.banner, 
	adSize:'MEDIUM_RECTANGLE', 
	overlap:true, 
	position:AdMob.AD_POSITION.BOTTOM_CENTER, 
	autoShow:true} );

// or, show any size at any position
if(AdMob) AdMob.createBanner( {
	adId:admobid.banner, 
	adSize:'CUSTOM',  width:200, height:200, 
	overlap:true, 
	position:AdMob.AD_POSITION.POS_XY, x:100, y:200, 
	autoShow:true} );

Step 3: Prepare an interstitial, and show it when needed

// preppare and load ad resource in background, e.g. at begining of game level
if(AdMob) AdMob.prepareInterstitial( {adId:admobid.interstitial, autoShow:false} );

// show the interstitial later, e.g. at end of game level
if(AdMob) AdMob.showInterstitial();

Javascript API Overview

Methods:

// set default value for other methods
setOptions(options, success, fail);
// for banner
createBanner(adId/options, success, fail);
removeBanner();
showBanner(position);
showBannerAtXY(x, y);
hideBanner();
// for interstitial
prepareInterstitial(adId/options, success, fail);
showInterstitial();
isInterstitialReady(callback);

Detailed Documentation

The APIs, Events and Options are detailed documented.

Read the detailed API Reference Documentation English / 中文.

FAQ

If encounter problem when using the plugin, please read the FAQ first.

Full Example Code

This AdMob Plugin Pro offers the most flexibility and many options.

Check the [test/index.html] (https://github.com/floatinghotpot/cordova-admob-pro/blob/master/test/index.html).

Screenshots

iPhone Banner iPhone Medium Rect
ScreenShot ScreenShot
iPad Medium Rect iPad SkyScraper
ScreenShot ScreenShot
iPad interstitial Any given X,Y:
ScreenShot ScreenShot
Android Banner Android Medium Rect
ScreenShot ScreenShot
Android Interstitial
ScreenShot

Tips

Some tips from recent stat data. (Fill rate and RPM may vary in different countries. For your reference only.)

  • Using AdMob Plugin Pro, higher and more stable fill rate. fillrate

  • Using Interstitial, much better profit. rpm

  • Using SMART_BANNER, avoid using BANNER or FULL_BANNER

Smart banner will auto detect the screen, and auto set a proper height, to fit whenever it's phone or pad.

If use FULL_BANNER, when app running on phone with smalll screen, as the screen is not big enough, it will not show banner with error "No fill".

Glossary:

  • Fill rate: The number of times ads are shown on your app, divided by the number of times your app requests to show an ad.
  • RPM: Revenue per 1000 impressions (RPM). RPM represents the estimated earnings you'd accrue for every 1000 impressions you receive.
  • Intel XDK: Intel's HTML5 App IDE and service, to build mobile app in clould, allow using 3rd-party plugin from web.
  • Adobe PhoneGap Build: Adobe service, to publish plugin and build app in cloud, only allow using plugins reviewed and approved.

Credits

This AdMob Plugin Pro is published in a win-win partnership model:

  • It's FREE.
  • It's closed source.
  • 2% Ad traffic will be shared, as return for the support and maintenance effort.
  • You will get commercial-level support with high priority, prompt and professional.

If you prefer fully open source model, please consider using the open source version. https://github.com/floatinghotpot/cordova-plugin-admob

AdMob Plugin Pro is your best choice for HTML5/Cordova/PhoneGap/XDK/Construct2 app/games.

  • Recommended by Telerik in Verified Plugins Marketplace. read more ...
  • Recommended by William SerGio in code project (20 Jun 2014), read more ...
  • Recommended by Arne in Scirra Game Dev Forum (07 Aug, 2014), read more ...
  • Recommended by Intel XDK / Crosswalk (08/22/2014), read more ...
  • Recommended by Scirra Construct 2 (09/12/2014) official release, read more ...

More Cordova plugins by Raymond Xie, click here.

Project outsourcing and consulting service is also available. Please contact us if you have the business needs.

About

Enhanced AdMob Plugin for PhoneGap and Cordova, Most Flexible. Banner and Interstitial. Any size, Any position. Latest SDK for iOS and Android with Google Play Services.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published