我正在为xamarin.android开发nuget包,我需要转换AndroidManifest.xml 我需要的是将android:sharedUserId属性添加到名为manifest
的根元素<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" >
<!-- some another nodes -->
</manifest>
所以我可以用
添加属性到根节点<manifest xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"
xdt:Transform="SetAttributes(sharedUserId)"
sharedUserId="com.random.userId">
</manifest>
但错过名称空间'android'。如何将名称空间添加到属性?