jeff
01/24/2022, 8:00 PMkotlin {
js(IR) { ... }
}
and when I try to add ksp:
plugins {
...
kotlin("js") version "1.6.10"
id("com.google.devtools.ksp") version "1.6.10-1.0.2"
}
it gives me this error:
You already registered Kotlin/JS target with another compiler: legacy
Googling indicates that ksp does support IR, I think? What am I doing wrong?Derek Ellis
01/24/2022, 9:12 PMmultiplatform
plugin instead of the js
plugin. You could try changing that?
Otherwise that error suggests you have another JS target somewhere else in your project?