https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
r

robnik

05/23/2020, 11:27 PM
The instructions for the kotlinx.serialization plugin don't work. Anyone know how to use it? https://github.com/Kotlin/kotlinx.serialization#gradle I get
Plugin [id: 'org.jetbrains.kotlin.plugin-serialization', version: '1.3.70'] was not found in any of the following sources:
Same if I use 1.3.72.
e

edenman

05/23/2020, 11:33 PM
kotlin("plugin.serialization") version "1.3.72"
works for me
my buildscript repositories looks like:
Copy code
repositories {
    google()
    jcenter()
    maven { url "<https://plugins.gradle.org/m2/>" }
  }
r

robnik

05/23/2020, 11:35 PM
Oh my. I had a typo. 🤦 Thank for answering.
💯 2