This is a companion discussion topic for the original entry at https://www.kodeco.com/38052357-your-second-kotlin-android-app/lessons/14
This is a companion discussion topic for the original entry at https://www.kodeco.com/38052357-your-second-kotlin-android-app/lessons/14
To add the kotlin parcelize plugin to the version catalog.
First, add these to libs.versions.toml
file
kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "org-jetbrains-kotlin-android" }
Then in the gradle files
// Project level gradle file
plugins {
alias(libs.plugins.kotlin.parcelize) apply false
}
// Module level gradle file
plugins {
alias(libs.plugins.kotlin.parcelize)
}