Speaking of json serialization, which one would yo...
# android
s
Speaking of json serialization, which one would you recommend for kotlin? Moshi, Jackson, Gson or something else?
s
Moshi 🙂
b
+1 for Moshi, although if your app is already using Gson there isn't a huge benefit to switching. Personally I don't like Jackson but I'm sure there are some devs who swear by it (although I've never met any who do)
s
Jackson has some nice kotlin extensions and I like it’s JsonNode object for doing targetted search for a particular field
k
Moshi
s
Thanks! Will look into Moshi. All projects I’ve been on have used Jackson because someone has liked it and switched from Gson.