Hi, could someone explain to me why I'm still getting "kotlinx.serialization.SerializationException:...
m
Hi, could someone explain to me why I'm still getting "kotlinx.serialization.SerializationException: Serializer for class 'Project' is not found. Mark the class as @Serializable or provide the serializer explicitly." even if the class is annoted, literally using the 2 line example from https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/basic-serialization.md#json-decoding
a
most likely you are missing the serialization plugin on your build.gradle.kts then
m
Yeah, unfortunatelly that was the issue
Thanks