I would like to change the value of an attribute prefixed by a namespace using simplexml:
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16">
These methods are not working:
$usesSDKTag['android:minSdkVersion'] = $minSdkVersion;
$usesSDKTag['minSdkVersion'] = $minSdkVersion;
I ended up recreating the node and adding attributes with namespace prefix to it: