Why are these other permissions being included in my Phonegap Android app?
I am using the Google Android Development Tools (Eclipse) with the
Phonegap plugin to create my Android app.
In my AndroidManifest.xml file, I only have these three permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />
However, when I install my app on my Android phone, it shows a request for
the following permissions*
Storage(modify or delete the contents of your USB Storage
Network Communication (full network access)
Phone Calls (read phone status and identity)
Network Communication (Google Play billing service, view network connections)
Development Tools(test access to protected storage)
I definitely don't want Phone Calls, and I'm pretty sure I don't need
Development Tools or Storage.
Why are these permissions being included, and how do I remove them from my
app?
No comments:
Post a Comment