admob-google / admob-cordova

Google AdMob plugin for Cordova, Phonegap and Intel XDK ,support ios and android,support admob v1 and admob v2 ,Monetize your html5 app with one javascript line.api is easy to use.
65 stars 50 forks source link

Adverts Not Showing #11

Closed ghost closed 8 years ago

ghost commented 8 years ago

The adverts just aren't showing up in my phonegap build.

I've added the plugin with: cordova plugin add com.admob.plugin

In the config.xml file I've added the line:

And then I'm using the JavaScript:

document.addEventListener("deviceready",onDeviceReady,false);

        function onDeviceReady() {

            admob.initAdmob("Admob code");
            admob.showBanner(admob.BannerSize.BANNER,admob.Position.BOTTOM_CENTER);

        }
admob-google commented 8 years ago

admob.initAdmob("admob banner ID","admob interstitial ID");

ghost commented 8 years ago

Thanks for your reply. I was including it like that. I just removed it for the example here. The problem has turned out to be with the onDeviceReady function not running.