I try to publish a multiplatform project to maven ...
# multiplatform
j
I try to publish a multiplatform project to maven local but I get
Unresolved reference: JvmInline
at
compileKotlinMetadata
phrase.
compileKotlinJvm
works fine.
I solved it by changing
JvmInline
to
kotlin.jvm.JvmInline
full path. Is it the expected behavior?
r
Do you have
import kotlin.jvm.JvmInline
? It might be that it works without the import on JVM but not on other platforms