Moshi Parsing List (Kotlin)

May 4, 2019

Moshi Adapter for List<String>.

val type = Types.newParameterizedType(List::class.java, String::class.java)val adapter = moshi.adapter<List<String>>(type)

Usage

val items = listOf("Apple", "Pear", "Banana")val jsonStr = adapter.toJson(items)val newItems = adapter.fromJson(jsonStr)

Adapter for MutableList<String>.

val type = Types.newParameterizedType(MutableList::class.java, String::class.java)val adapter = moshi.adapter<MutableList<String>>(type)

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.