Retrofit 2 — Access Mapped Objects and Raw Response Payload
Retrofit has the fantastic capability of automatically mapping server responses, no matter if XML, JSON or protocol buffers, to Java objects. This is super convenient for us developers. Of course, if you want, you can always skip the mapping and work with the raw server response. However, in rare cases …
Continue Reading