I am developing an Android app using Retrofit.
The server is sending XML as a response. So I should convert it. In the case of the Json, I used the GsonConverter. And for XMl, I think I can use SimpleXMLConverter.
I visited the GitHub link for SimpleXMLConverter: https://github.com/square/retrofit/tree/master/retrofit-converters/simplexml
And I found this message:
Deprecated – Please switch to the JAXB Converter
So I visited the Github link for JAXBConverter: https://github.com/square/retrofit/tree/master/retrofit-converters/jaxb
But I found this message:
Note that JAXB does not work on Android.
Hmm... what xml converter should I used?...