Davide Avagliano
09/07/2020, 3:20 PMorg.jetbrains.kotlin:kotlin-serialization:1.4.0
org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC
org.jetbrains.kotlinx:kotlinx-serialization-cbor:1.0.0-RC
We have already formatted all our Cbor.load/dump
to Cbor.encodeToByteArray/decodeFromByteArray
,
but there's the thing: our project still generates a Seriazer.kt
file per-module (multi-module-proj) containing all extensions for serialization, but with the old load/dump
occurrences, which aren't recognized and our build fails with the "Unresolved reference: load" message.
We tried several times to clear/invalidate generated files and cache, with no success.
Have you guys some hint to give us?