I want to display AdMob's ads in my android application. I do all the necessary like in the doc. But I can't run my app because there is an error on my AndroidManifest.xml on this line :

<activity android:name="com.google.ads.AdActivity"
              android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

The error is :

error: Error: String types not allowed (at 'configChanges' with value 'keyboard|keyboardHidden|orientation|
 screenLayout|uiMode|screenSize|smallestScreenSize').

But if I delete some value my app is running but instead of the ads I've this text : "You must have AdActivity declared in AndroidManifest.xml with configChanges."

I don't unterstand how I can fix the problem.

I'm using android SDK 2.1 and the last google adMob SDK 4.3.1

Thanks

link|improve this question

38% accept rate
feedback

2 Answers

up vote 28 down vote accepted

To fix the problem you have to set your project build target to Android 3.2 or higher, see the requirements section in the documentation.

link|improve this answer
1  
I don't understand because in the properties in Project Build Target it's Android 2.1 that is checked. If I build my project with Android 3.2 or higher my application won't be accessible on Android 2.1 – guillaume Oct 26 '11 at 13:02
11  
No, that's not correct. You are compiling your app against the version in build target, so that you app can (but don't have to) use all the new APIs there. But you can still run your app on devices running older versions of Android. You can specify the minimal version of Android OS capable to run your app in uses-sdk manifest tag (if it is not specified, the minSdkVersion is 1). – Tomik Oct 26 '11 at 13:20
1  
Thanks, I understand better the link between the SDK used and the minSdkVersion :) – guillaume Oct 26 '11 at 13:54
one other note, you have to be sure that the 'uses-sdk' node is placed prior to the 'application' node, or else you'll also get this error even once you've changed your build target – Joel Martinez Mar 28 at 21:03
feedback

You can also just ignore the newer configchanges setting and make it like the old version has:

configChanges="keyboard|keyboardHidden|orientation"

This is what I always had in my admob ad activity. The new stuff is propably for android 3+.

link|improve this answer
3  
Hm, this hasn't worked for me. The black banner with the red border occured when setting this. For me the only working solution was to change the build target. – sven Oct 31 '11 at 7:51
4  
Yeah that doesn't work unless you use an older version of the admob jar lib – Blundell Nov 6 '11 at 14:31
Doesn´t work!!! – jmunoz Dec 27 '11 at 13:42
This doesn't work for new admob jar. It worked for previuos versions. – Mayu Mayooresan Feb 25 at 16:56
feedback

Your Answer

 
or
required, but never shown

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