I'm trying to put ads in my app using Admob.
However, it keeps saying "Required XML attribute "adSize" was missing" even though that attribute is in my XML file.
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="MY UNIT ID"
ads:adSize="BANNER"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true" />
Does any one know why this is happening?
Cheers.