I am having a problem with Admob. When I run my application, instead of showing the ad, it says 'XML attribute missing "adsize"'. The log says OnFailedToRecieve ad request. I can't trace what's happening. Does anyone have any advice?

link|improve this question

80% accept rate
Hey Shree Dev, can you please upload your code ? – Android Jan 4 at 9:42
thanks arjun its actually the problem of sdk version.i tried a different version of sdk 4.0.4 instead of 4.1.1 now its working........... – Sreedev Jan 4 at 10:33
ok Cool........ – Android Jan 4 at 10:33
feedback

1 Answer

up vote 0 down vote accepted

Before version 4.1.0, you needed to define an attrs.xml yourself, and so the namespace for ads probably has your package name:

xmlns:ads="http://schemas.android.com/apk/lib/<your_package_name>"

With v4.1.0 or later, the SDK is bundled with this attributes file, so the ads namespace should be:

xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

The 4.1.1 SDK would have worked If you had made that change. FYI, version 4.3.1 is available now. It is recommended to be on the latest version as it is more stable and better supported. You can download it here and get some helpful tips on migrating to v4.3.1 here.

link|improve this answer
thankyou eric...... – Sreedev Jan 5 at 3:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.