This project is not abandonned.
Kxml is a simple XML parser.
No CDATA, comments and no ampersands yet.
Use https://jitpack.io repository
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Use these dependencies per kotlin module respectively:
api("com.github.lewik.kxml:kxml:0.0.6")
fun main(){
Kxml.parse(text)
}