v79
03/21/2021, 5:41 PMsubprojects { apply { plugin(...) } }
but that certainly doesn't work. I don't even know what the plugin ID is. NOTE: nothing to do with multiplatform/mobile/iOS; this is a libGDX game project.v79
03/21/2021, 5:54 PMapply {
plugin("kotlinx-serialization")
}
to the sub-module's build.gradle.kts file, and then do a clean build. Gradle is obtuse, isn't it?ephemient
03/21/2021, 9:01 PMplugins {
id 'org.jetbrains.kotlin.plugin.serialization'
}
or
plugins {
kotlin("plugin.serialization")
}
if you're using the Kotlin Gradle DSL