Okay, of course I found the answer after only a fe...
# android
j
Okay, of course I found the answer after only a few more minutes of digging. This issue explains it: https://github.com/square/moshi/issues/396 This is actually by design. The Moshi converter jumps over all “unsettable” (read:
val
) properties. This feels strange and is not documented, but the fix was easy:
val
became
var
and everything was working again.