In my final AndroidManifest, found under Droid\obj\Debug\android\manifest\AndroidManifest.xml
, I have
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
However, my main project does not have those permissions listed. In fact, the word "Internet" doesn't appear anywhere in my entire solution!
According to this forum post,
Any library can set permissions that it needs, which automatically get added during compilation
But I have no idea how to tell which library is adding them! So how can I figure out which library is adding permissions to my app?