- PhoneGap 2.0.0 - 3.4.0
- AdMob Native Android SDK: 6.1.0 - 6.4.1
It is easy to use AdMob's Native Android SDK to integrate ads into your PhoneGap app. This will display AdMob in addition to AdSense ads (in a Terms and Conditions compliant manor) to help monetize your PhoneGap app as efficiently as possible. If you are not an AdSense user, or wish to only include AdMob ads, you can opt to not enable AdSense under the AdMob control panel.
- Download the Android AdMob SDK
- Copy GoogleAdMobAdsSdk-*.*.*.jar to your PhoneGap's libs directory.
- Refresh your project dir in eclipse
- In Eclipse, Right or secondary click on your project, choose 'Build Path' then the last menu item 'Configure Build Path'.
- Select the 'Libraries' tab
- Click 'Add Jars'
- Select yourProject/libs/GoogleAdMobAdsSdk-*.*.*.jar
- Open yourProject/src/com.*.*/MainActivity.java
- Expand the collapsed inclusions (The + next to import android.os.Bundle; by default)
- Add import com.google.ads.*;
- Add import android.widget.LinearLayout;
Inside your MainActivity create a string for your ad id with the following code:
private static final String AdMob_Ad_Unit = "Unit_ID_Here";
Be sure to include your own ad unit id, otherwise no ads will be displayed
Below your unit id string, add a new view:
private AdView adView;
Following PhoneGap's super.loadUrl call, you'll configure and initialize your new Ad View as follows:
adView = new AdView(this, AdSize.BANNER, AdMob_Ad_Unit);
LinearLayout layout = super.root;
layout.addView(adView);
AdRequest request = new AdRequest();
request.setTesting(true);
adView.loadAd(request);
View complete example of this file
After your MainActivity, create define the ad activity:
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
View complete example of this file
Be sure to disable testing mode before deploying to Google Play by changing the value to false, commenting out or deleting the following line from your MainActivity.java
request.setTesting(true);