org.jetbrains.kotlin.plugin.parcelize
Owner: Kotlin Team
Kotlin Parcelize plugin
Sources: https://github.com/JetBrains/kotlin/
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.kotlin.plugin.parcelize") version "1.6.0-RC2"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0-RC2") } } apply(plugin = "org.jetbrains.kotlin.plugin.parcelize")
- Applying plugins to all subprojects .