Hi people, I'm really not getting serialization to...
# serialization
n
Hi people, I'm really not getting serialization to work in my multi-platform kotlin-native project. I'm just getting "unresolved reference: serializer" and gradle refuses to compile. Is this even supported or am I just doing something wrong? Example code available at: https://github.com/rundfunk47/MultiPlatformSerialization
t
Looks like you mixed up the dependencies. For example
kotlinx-serialization-runtime-native
in the
commonMain
source set. I once prepared this example, maybe that helps: https://github.com/novoda/spikes/blob/master/multiplatform-http/common/build.gradle
n
Thanks! I'll take a look 👀