处理JSON使用?converter-gson,一下子来个XML,搜索依赖发现有个?converter-simplexml,IDE提示?converter-simplexml 已经过时,然后改用?converter-jaxb,后来到github看文档才知道?converter-jaxb 在 Android 上用不了,simplexml 又提示不支持XML1.1,再一看文档,Android上使用 simplexml 要去除几个依赖,然后就搞定了,kts配置如下:
implementation("com.squareup.retrofit2:converter-simplexml:2.9.0") {
exclude( module= "stax")
exclude (module= "stax-api")
exclude (module = "xpp3")
}
groovy配置如下:
implementation('com.squareup.retrofit2:converter-simplexml:2.9.0') {
exclude module: 'stax'
exclude module: 'stax-api'
exclude module: 'xpp3'
}
最后附上几个参考链接: