How do I use jetbrains annotations like @Language ...
# multiplatform
m
How do I use jetbrains annotations like @Language in the commonMain sourceset?
a
@Language
is JVM only, so it's not possible* to use it in non-JVM targets. (* Technically it is possible, but not in a practical way, and it can break in ugly ways.) But, converting
@Language
to KMP is in-progress https://github.com/JetBrains/java-annotations/pull/103. I don't know about an ETA though.
👀 1