<MSBuild.ExtensionPack.Xml.XmlFile
TaskAction="AddElement"
File="$(OutputPath)app\AndroidManifest.xml"
Key="android:name"
Value="%(AndroidPermissions.Identity)"
Element="uses-permission"
XPath="/manifest"/>
I have this task. It addes permissions to AndroidManifest file. All things going to manifest file have "android:" prefix to their properties. For some reason the stuff before ":" disappears in the output.
TaskAction="AddElement"
File="$(OutputPath)app\AndroidManifest.xml"
Key="android:name"
Value="%(AndroidPermissions.Identity)"
Element="uses-permission"
XPath="/manifest"/>
I have this task. It addes permissions to AndroidManifest file. All things going to manifest file have "android:" prefix to their properties. For some reason the stuff before ":" disappears in the output.