Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 618 Bytes

File metadata and controls

31 lines (25 loc) · 618 Bytes

kxml

This project is not abandonned.

Kxml is a simple XML parser.
No CDATA, comments and no ampersands yet.

Download

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")

Usage

fun main(){
    Kxml.parse(text)
}