Hi, is there any additional settings should be set...
# serialization
d
Hi, is there any additional settings should be setup for Json to get working retrofit Call<Void>?
j
You probably should ask in #squarelibraries, but
Call<Void>
bypasses conveters
It closes the response body and returns null. You should declare it as
Call<Void?>
for Kotlin
d
@jw thx, for the suggestion, but the body length is 0. Why it’s try to decode at all?
j
It doesn't try