May 20
Android AdView missing required XML attribute "adsize"
In case you're using Android AdMob SDK 4.1.0. and you get this error.
It seems that AdMob guys haven't yet updated documentation. Solution is to remove AdView declare-styleable from attrs.xml.
And you should also replace
xmlns:ads="http://schemas.android.com/apk/res/com.google.ads.example"
with
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
in your layout files where you're using AdView.
Another interesting new feature that you should check out is
ads:loadAdOnCreate="true"
Have fun.
