Bob wrote: > I did some more investigation and it seems to be a problem with my > having a > <uses-configuration > android:name="android.permission.READ_PHONE_STATE"/> > at the end of my Android manifest. When I remove that the market > seems to function normally. Has this permission been removed or > renamed or do I need to move it to a different section of the > manifest?
You are attempting to use a permission in a <uses-configuration> element. Either that should be a <uses-permission> element, or you need different attributes in the element than what you have. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

