<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.
Comments: ** Comment from web user: mikeFourie **
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.
Comments: ** Comment from web user: mikeFourie **
Ok I can repro this. I don't think there is a workaround. I need to test a little more. Either way I'll have a workaround or a fix in soon...
Thanks for reporting this.
Mike