tikxml
tikxml copied to clipboard
Modern XML Parser for Android
Update annotation dependency version
``` @Xml(name = "list") data class TaskList( @Attribute var id: String, @Element var taskseries: List ) ``` Fails on ``` ``` With ``` java.lang.NullPointerException: Parameter specified as non-null is null:...
https://medium.com/square-corner-blog/okio-2-6f6c35149525 This would be very helpful to this project because it already have some Kotlin idioms.
As reported in #44 parsing an xml like ``` xml Monday Tuesday Wednesday Thursday Friday Saturday Sunday ``` is not possible with `@PropertyElement` nor with `@Element List` directly. The current...
The tikxml is working with retrofit but its not converting the "\&" in the xml. I'm trying to follow the docs to add the HtmlEscapeStringConverter ``` TikXml.Builder() .addTypeConverter(String.class, new HtmlEscapeStringConverter())...
I try to parse an XML that comes from an iso-8859-1 API (somes strings have french accents). Unfortunately, tikXml seems only to work with UTF-8. I tried to use a...
Support for generic elements would be great. ``` Kotlin @Element(compileTimeChecks = false) lateinit var element : T ```
As you all have noticed TikXML is not in a good shape anymore. This has various reasons but the main reason probably is that I'm not working for Tickaroo anymore...
I'm currrently transitioning from SimpleXML to TikXML, but there seems to be no way to create enums from markup. Given a markup like this: ``` Jane Doe read write delete...