Moshi is a JSON library for Android and Java.
I am currently trying to leverage kotlin coroutines more. But I face a problem: when using moshi or okhttp inside …
kotlin okhttp kotlin-coroutines moshiI'm deciding on whether to use Moshi by square or Gson to serialize and deserialize model data. one thing i …
android gson deserialization moshiI have a User class. And two subclasses. Parent and Child. I get json from my server with {"user":"..."} and …
android square moshiI want to serialize an Object to Map by Moshi.Here is my codes by Gson public static Map<…
moshiwith Gson you would do this Gson gson = new GsonBuilder() .setDateFormat("yyyy-MM-dd'T'HH:mm") .create(); and pass it to the retrofit …
android retrofit2 moshiIs there a simple way to ignore a field when using moshi to serialize to a json string? I can …
json moshiI want to know how to ignore a Kotlin class field when using Moshi. I've found this answer for Java (…
json kotlin ignore serialization moshiI built my Retrofit instance like this: Retrofit retrofit = new Retrofit.Builder() .baseUrl(server.url("/")) .addConverterFactory(MoshiConverterFactory.create(moshi)) .build(); …
android retrofit2 mockwebserver moshi