commit | d389c9ec6e1c5dcee8e93cc84d9888d0ff908f9b | [log] [tgz] |
---|---|---|
author | Clara Fok <clarafok@google.com> | Mon Mar 25 23:56:28 2024 +0000 |
committer | Clara Fok <clarafok@google.com> | Mon Mar 25 23:56:31 2024 +0000 |
tree | de1f91d9cdd1db50d128f538fb5092460a76c944 | |
parent | 06b623f2aacb0c70adc039ef598ee4000162f2e4 [diff] |
Fix incorrect quotation symbol. Bug: 327649027 Change-Id: Ie43c2d46a60da3529caa8ccc71f10e9a725cc1fa Test: TH
Kotlin serialization consists of a compiler plugin, that generates visitor code for serializable classes, runtime library with core serialization API and support libraries with various serialization formats.
@Serializable
and standard collections.Here is a small example.
import kotlinx.serialization.* import kotlinx.serialization.json.* @Serializable data class Project(val name: String, val language: String) fun main() { // Serializing objects val data = Project("kotlinx.serialization", "Kotlin") val string = Json.encodeToString(data) println(string) // {"name":"kotlinx.serialization","language":"Kotlin"} // Deserializing back into objects val obj = Json.decodeFromString<Project>(string) println(obj) // Project(name=kotlinx.serialization, language=Kotlin) }
You can get the full code here.
Read the Kotlin Serialization Guide for all details.
You can find auto-generated documentation website on GitHub Pages.
Kotlin serialization plugin is shipped with the Kotlin compiler distribution, and the IDEA plugin is bundled into the Kotlin plugin.
Using Kotlin Serialization requires Kotlin compiler 1.4.0
or higher. Make sure you have the corresponding Kotlin plugin installed in the IDE, no additional plugins for IDE are required.
plugins
blockYou can set up the serialization plugin with the Kotlin plugin using Gradle plugins DSL:
Kotlin DSL:
plugins { kotlin("jvm") version "1.6.10" // or kotlin("multiplatform") or any other kotlin plugin kotlin("plugin.serialization") version "1.6.10" }
Groovy DSL:
plugins { id 'org.jetbrains.kotlin.multiplatform' version '1.6.10' id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10' }
Kotlin versions before 1.4.0 are not supported by the stable release of Kotlin serialization
apply plugin
(the old way)First, you have to add the serialization plugin to your classpath as the other compiler plugins:
Kotlin DSL:
buildscript { repositories { mavenCentral() } dependencies { val kotlinVersion = "1.6.10" classpath(kotlin("gradle-plugin", version = kotlinVersion)) classpath(kotlin("serialization", version = kotlinVersion)) } }
Groovy DSL:
buildscript { ext.kotlin_version = '1.6.10' repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" } }
Then you can apply plugin
(example in Groovy):
apply plugin: 'kotlin' // or 'kotlin-multiplatform' for multiplatform projects apply plugin: 'kotlinx-serialization'
After setting up the plugin one way or another, you have to add a dependency on the serialization library. Note that while the plugin has version the same as the compiler one, runtime library has different coordinates, repository and versioning.
Kotlin DSL:
repositories { mavenCentral() } dependencies { implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3") }
Groovy DSL:
repositories { mavenCentral() } dependencies { implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3" }
We also provide
kotlinx-serialization-core
artifact that contains all serialization API but does not have bundled serialization format with it
The library works on Android, but, if you're using ProGuard, you need to add rules to your proguard-rules.pro
configuration to cover all classes that are serialized at runtime.
The following configuration keeps serializers for all serializable classes that are retained after shrinking. Uncomment and modify the last section in case you're serializing classes with named companion objects.
# Keep `Companion` object fields of serializable classes. # This avoids serializer lookup through `getDeclaredClasses` as done for named companion objects. -if @kotlinx.serialization.Serializable class ** -keepclassmembers class <1> { static <1>$Companion Companion; } # Keep `serializer()` on companion objects (both default and named) of serializable classes. -if @kotlinx.serialization.Serializable class ** { static **$* *; } -keepclassmembers class <2>$<3> { kotlinx.serialization.KSerializer serializer(...); } # Keep `INSTANCE.serializer()` of serializable objects. -if @kotlinx.serialization.Serializable class ** { public static ** INSTANCE; } -keepclassmembers class <1> { public static <1> INSTANCE; kotlinx.serialization.KSerializer serializer(...); } # @Serializable and @Polymorphic are used at runtime for polymorphic serialization. -keepattributes RuntimeVisibleAnnotations,AnnotationDefault # Serializer for classes with named companion objects are retrieved using `getDeclaredClasses`. # If you have any, uncomment and replace classes with those containing named companion objects. #-keepattributes InnerClasses # Needed for `getDeclaredClasses`. #-if @kotlinx.serialization.Serializable class #com.example.myapplication.HasNamedCompanion, # <-- List serializable classes with named companions. #com.example.myapplication.HasNamedCompanion2 #{ # static **$* *; #} #-keepnames class <1>$$serializer { # -keepnames suffices; class is kept when serializer() is kept. # static <1>$$serializer INSTANCE; #}
In case you want to exclude serializable classes that are used, but never serialized at runtime, you will need to write custom rules with narrower class specifications.
-keepattributes RuntimeVisibleAnnotations,AnnotationDefault # kotlinx-serialization-json specific. Add this if you have java.lang.NoClassDefFoundError kotlinx.serialization.json.JsonObjectSerializer -keepclassmembers class kotlinx.serialization.json.** { *** Companion; } -keepclasseswithmembers class kotlinx.serialization.json.** { kotlinx.serialization.KSerializer serializer(...); } # Application rules # Change here com.yourcompany.yourpackage -keepclassmembers @kotlinx.serialization.Serializable class com.yourcompany.yourpackage.** { # lookup for plugin generated serializable classes *** Companion; # lookup for serializable objects *** INSTANCE; kotlinx.serialization.KSerializer serializer(...); } # lookup for plugin generated serializable classes -if @kotlinx.serialization.Serializable class com.yourcompany.yourpackage.** -keepclassmembers class com.yourcompany.yourpackage.<1>$Companion { kotlinx.serialization.KSerializer serializer(...); } # Serialization supports named companions but for such classes it is necessary to add an additional rule. # This rule keeps serializer and serializable class from obfuscation. Therefore, it is recommended not to use wildcards in it, but to write rules for each such class. -keepattributes InnerClasses # Needed for `getDeclaredClasses`. -keep class com.yourcompany.yourpackage.SerializableClassWithNamedCompanion$$serializer { *** INSTANCE; }
Most of the modules are also available for Kotlin/JS and Kotlin/Native. You can add dependency to the required module right to the common source set:
commonMain { dependencies { // Works as common dependency as well as the platform one implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$serialization_version" } }
The same artifact coordinates can be used to depend on platform-specific artifact in platform-specific source-set.
Ensure the proper version of Kotlin and serialization version:
<properties> <kotlin.version>1.6.10</kotlin.version> <serialization.version>1.3.3</serialization.version> </properties>
Add serialization plugin to Kotlin compiler plugin:
<build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <compilerPlugins> <plugin>kotlinx-serialization</plugin> </compilerPlugins> </configuration> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-serialization</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> </plugin> </plugins> </build>
Add dependency on serialization runtime library:
<dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-serialization-json</artifactId> <version>${serialization.version}</version> </dependency>