Use Google advertising to monetize PhoneGap app (built with PhoneGap Build)

前端 未结 2 1165
北恋
北恋 2020-12-29 11:11

On AdMob, there\'s no option for HTML5 apps anymore, and on AdSense, mobile apps (even those based on webview, explicitly mentioned) are banned.

How can I use Google

2条回答
  •  猫巷女王i
    2020-12-29 11:31

    AdMob plugin was not available in PhoneGap Build before, as the old policy did not allow binary files submitted.

    But now, they made a great change to their policy (http://phonegap.com/blog/2014/12/09/phonegap-build-new-features/), and now allow you to use the plugins in Cordova plugin registry.

    To use Admob plugin in your app, just configure it in your config.xml:

    To display a banner Ad:

    if(AdMob) AdMob.createBanner( {
        adId:admobid.banner, 
        position:AdMob.AD_POSITION.BOTTOM_CENTER, 
        autoShow:true} );
    

    To display a full screen Ad:

    // 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();
    

    More detailed instructions and example code are documented at its github project homepage:

    https://github.com/floatinghotpot/cordova-admob-pro

提交回复
热议问题