Using jackson-dataformat-xml on android
I'm strugling with using jackson-dataformat-xml on android I have some very basic code that works fine on oracle jre JacksonXmlModule module = new JacksonXmlModule(); module.setDefaultUseWrapper(false); XmlMapper xmlMapper = new XmlMapper(module); First I tried official documentation adapted for gradle (by me, not sure if done correctly): compile 'com.fasterxml.jackson.core:jackson-core:2.5.4' compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.4' compile 'com.fasterxml.jackson.core:jackson-databind:2.5.4' compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.5.4' compile