Hey, I've been getting this error on all of my dat...
# serialization
a
Hey, I've been getting this error on all of my data classes that are annotated with Serializable: 1.
Your current kotlinx.serialization core version is too low, while current Kotlin compiler plugin 1.9.10 requires at least 1.0-M1-SNAPSHOT. Please update your kotlinx.serialization runtime dependency.
I've been looking for an answer everywhere but I couldn't find anything. From what I've been able to assess, the issue is caused by a compileOnly personal dependency that I have that also uses Kotlin Serialization, as removing it seems to get rid of those errors. So, it seems that it's somehow conflicting with my project's serialization plugin. However, it's a very fundamental dependency to my project. Any clues on how this may be solved? Thanks in advance.
172 Views