its created by kotlinx-serialization.. every class that is
@Serializable
has this function to get its serializer
s
snowe
01/11/2019, 4:57 PM
I mean I have the
@Serializable
on my class and I have no
serializer
method….
i
itnoles
01/11/2019, 5:12 PM
kotlinx-serialization will generate the serializer methods on the class if it have @Serializable
s
snowe
01/11/2019, 5:22 PM
Well it’s not. I don’t know what else to say. I understand that it’s supposed to, but this is what I’m getting.
i
itnoles
01/11/2019, 6:15 PM
check dependencies
n
Nikky
01/12/2019, 12:30 AM
make sure you have the serialization plugin for gradle as well
s
snowe
01/12/2019, 4:30 AM
Thank you. I had to add the serialization plugin. I had removed it because it was causing crazy issues, but I'm betting it was because the readme said to add the multiplatform plugin as well and that freaked out.