Hello, @toni.1! Can you explain a little bit - as I can see from your GitHub repo, you were trying to specify dependencies in a separate block rather than in a sourceSets as it is done here. Have you tried to do things that way? Also, I cannot see enableFeaturePreview('GRADLE_METADATA') = true in your gradle.properties file. Maybe it was causing the problem here.
Hi Artyom, now I have JSON serialization, thank you very much! But, I want the output of serialization in byte arrays, not in the string. (I believe that I will get better performance if I’m not using string output serialisation, like JSON). I tried to work with
but, it seems in native nothing except JSON is supported…is that true? Should I use other approach regards (kotlin.reflect, maybe?) to get the serialized object in a byte array, like in JVM serialization, or should I wait for a future version of kotlin native…?