Compile error
Brought to you by:
skonno
Hello, when I try to compile the project from the cyberlink/ directory using "maven package" I get the following error:
/home/victor/code/clinkjava/cyberlink/upnp-stack/src/main/java/org/cybergarage/xml/parser/kXML2Parser.java:[49,23] incompatible types
found : org.kxml2.io.KXmlParser
required: org.cybergarage.xml.parser.XmlPullParser
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Hello,
the issue is caused by an import collision as "org.cybergarage.xml
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Hello,
the issue is caused by an import collision between "org.cybergarage.xml.*" and "org.xmlpull.v1.*" which both provide XmlPullParser. Use "org.xmlpull.v1.XmlPullParser" instead of the other one to solve the issue.
Greetings, Christian
PS: Sorry for the other post which was accidentally added.
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Dear all,
I upload a patch to fix it.
https://sourceforge.net/tracker/?func=detail&aid=3009734&group_id=75638&atid=544608