You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google AdMob Ads Developers
I replaced jar file form 4.1.1 to 4.3.1. and modified manifest file.
but It dose not work.
I get error message as follows:
AndroidManifest.xml:17: error: Error: String types not allowed (at
'configChanges' with value 'keyboard|keyboardHidden|orientation|
screenLayout|uiMode|screenSize|smallestScreenSize').
Can anyone help?
Eric Leichtenschlag
unread,
Nov 2, 2011, 12:54:44 PM11/2/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-adm...@googlegroups.com
You will also have to download Android 3.2 or above, and then set the target in project.properties to Android-13 or above to compile against the newer Android SDK. Some of the required configChanges were introduced in Android 3.2.
Cheers,
Eric, AdMob SDK Support
Jim
unread,
Nov 2, 2011, 12:54:47 PM11/2/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google AdMob Ads Developers
Did you change the project build target? (project.properties ->
target=android-13) or right click on the project -> Properties ->
Android -> Android 3.2 (API 13)
-Jim
bongoxx1
unread,
Nov 2, 2011, 11:09:53 PM11/2/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google AdMob Ads Developers
Thank you Eric and Jim.
I uploaded Android 3.2,changed Properties to 13. and I do updated ADT.
It works fine.
But I want to make my program on API 4.
Is 4.3.1 applicable?
Eric Leichtenschlag
unread,
Nov 3, 2011, 12:59:27 PM11/3/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-adm...@googlegroups.com
Sure, just use <uses-sdk android:minSdkVersion="4" /> in your manifest file. I recommend reading up on the uses-sdk element so you know how to configure exactly which devices you support.