I'm running into a strange issue publishing on the Android market, and
am wondering if anybody else has seen the same:
Basically, whatever permissions I list in my "Android Manifest" file
get listed twice when I upload the APK. By way of example, here's a
direct copy/paste from the upload area...
------------------
This apk requests 6 permissions that users will be warned about
'android.permission.READ_CONTACTS'
'android.permission.WRITE_CONTACTS'
'android.permission.CALL_PHONE'
android.permission.READ_CONTACTS
android.permission.WRITE_CONTACTS
android.permission.CALL_PHONE
------------------
And here are the three relevant lines in my android manifest file
---------------
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.WRITE_CONTACTS"/>
--------------
I've tried uploading in FF3.5, IE7, and IE8, and modified the
permissions tags to end with a space before the trailing /> and
without. Every permutation of any possible quirk I try to work
around, still ends up with the whole "everything listed twice" issue.
Those three permission tags are direct children of the <manifest> tag.
I don't actually know if this is something I should even care about,
but I did notice earlier today that I couldn't search for my
application ("Contacts Evolved") in the market, wheras I could before
my phone updated to donut... I had to un-publish and re-publish the
app for it to show up again. It downloads fine now, but still gives
me the feeling that something is "wrong" that might cause issues down
the line, and I'd like to get it fixed.
Any ideas on what's happening, or if it's happened to anybody else,
would be greatly appreciated:)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" 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-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---