-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.0.0
-
Fix Version/s: 3.1.0
-
Component/s: cordova-wp7 (DEFUNCT), cordova-wp8 (DEPRECATED)
-
Labels:None
Hi,
I'm porting our mobile application from Android to WP8. Our Android config.xml contains the namespace in <widget> tag:
<widget id="fi.fastroi.care" version="2.0.0" xmlns="http://www.w3.org/ns/widgets>
Current implementation of ConfigHandler does not find any descendants from the XML, since the document is searched like this: document.Descendants("param"), without the default namespace included in the XName argument to the Descendants()-function.
A workaround: remove namespace from the config.xml.
A fix would be to get widget-tag's default namespace and include that into every Descendants()-call.