Open mateuy-dev opened 9 months ago
The library uses an global Moshi instance that can't me modified.
object MoshiUtils { val moshi: Moshi by lazy { Moshi.Builder() .build() } }
A fast dirty solution would be just changeing it to var so that we could modify it and add adapters.
The library uses an global Moshi instance that can't me modified.
object MoshiUtils { val moshi: Moshi by lazy { Moshi.Builder() .build() } }
A fast dirty solution would be just changeing it to var so that we could modify it and add adapters.