FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
JSON to Kotlin Data Class: Complete Guide with kotlinx.serialization, Gson and Moshi
How-ToProgramming Languages

JSON to Kotlin Data Class: Complete Guide with kotlinx.serialization, Gson and Moshi

via Dev.toarenasbob2024-cell1mo ago

Converting JSON to Kotlin data classes for Android and multiplatform apps. Here's everything you need. Basic Data Class import kotlinx.serialization.Serializable import kotlinx.serialization.SerialName @Serializable data class User ( val id : Int , val name : String , val email : String , val active : Boolean , @SerialName ( "avatar_url" ) val avatarUrl : String ? = null ) // Deserialize val user = Json . decodeFromString < User >( jsonString ) // Serialize val json = Json . encodeToString ( user ) Gson Alternative // build.gradle: implementation 'com.google.code.gson:gson:2.11.0' data class User ( val id : Int , val name : String , @SerializedName ( "avatar_url" ) val avatarUrl : String ? ) val gson = Gson () val user = gson . fromJson ( jsonString , User :: class . java ) val serialized = gson . toJson ( user ) Moshi Alternative // build.gradle: implementation 'com.squareup.moshi:moshi-kotlin:1.15.1' @JsonClass ( generateAdapter = true ) data class User ( val id : Int , val name : St

Continue reading on Dev.to

Opens in a new tab

Read Full Article
29 views

Related Articles

How-To

# 5 JSON Mistakes Developers Make (And How to Fix Them Fast)

Medium Programming • 1d ago

10 subtle go mistakes that only show up in production
How-To

10 subtle go mistakes that only show up in production

Medium Programming • 1d ago

Stop Configuring Third-Party Libraries by Hand — Let Your Agent Handle It!
How-To

Stop Configuring Third-Party Libraries by Hand — Let Your Agent Handle It!

Medium Programming • 1d ago

How-To

How I Stay Consistent While Learning Coding

Medium Programming • 1d ago

T-Mobile Business Promo Codes and Deals
How-To

T-Mobile Business Promo Codes and Deals

Wired • 1d ago

Discover More Articles