I'm using Xamarin Studio to create Android app and I've got a problem with AndroidManifest.xml file. It wasn't created in 'Properties' folder, but I've noticed that it was generated in obj\Debug\android after build. My question is how can I control content of this generated file. I prefer to add permission directly in AndroidManifest.xml, not by non-abstract classes that derive from Activity and have ActivityAttribute declared on them (I'm aware of this possibility). Any idea why is doesn't exist in 'Properties'?
I'm not sure why it wasn't created for a new project. However, you can double click on the Android project in your solution and then a "Project Options" dialog should pop up. Click on "Android Application". If you don't have a manifest a button should appear to add one (this should add one to the Properties folder). If you do have one you can add permissions from the dialog.