Last active
August 29, 2015 14:24
-
-
Save saurabhalang/8898de427344feb3565a to your computer and use it in GitHub Desktop.
How to show admob ads in your android apps?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| xmlns:ads="http://schemas.android.com/apk/res-auto" | |
| <com.google.android.gms.ads.AdView | |
| android:id="@+id/adView" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:layout_centerHorizontal="true" | |
| android:layout_alignParentBottom="true" | |
| ads:adSize="BANNER" | |
| ads:adUnitId="@string/banner_ad_unit_id"> | |
| </com.google.android.gms.ads.AdView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment