Premissions:

Hello. I got a weird issue.

My game takes 5 permissions some of which doesn’t make sense like it uses phone calls.

full network access
Phone calls
Storage
Network communication
System tools

It should not need these things. Can I adjust these permissions somewhere?

I got a file in my plugins folder now called AndroidManifest.

And it seems that the export bases itself on the manifest in the plugins folder.

Now the problem is that is seems like no matter what I do, it will always keeps or creates the lines like;

Isn’t there any way I can make this false or not happen?
Set it up so it does NOT use these permissions?

If you have any plugins, they might require those permissions. Also if you use Application.internetReachability in your code, it will automatically add ACCESS_NETWORK_STATE
http://forum.unity3d.com/threads/137966-Application-internetReachability-does-not-work

Alright, I have some plugins. Is there any way to disable them for launch or do I have to delete them before exporting it into an APK?

Aha, I found a way to change permissions by setting them to false in the manifest located in Unity itself.

Quite the learning experience.