Serializer for class ‘…’ is not found. Mark the class as @Serializable or provide the serializer explicitly
after reading some documentation I found that the error in my case was mainly due to two misconfigurations that I had: first: I needed to add the plugin in the gradle at the app and project level, I solved this as follows: adding in gradle.project the next line: id ‘org.jetbrains.kotlin.plugin.serialization’ version ‘1.6.21’ As is seen … Read more