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

Conor Gould

10/23/2023, 10:46 PM
Hey, I'm currently working on a project and need the
org.jetbrains.annotations
library. However, I am getting an IDE error with the following import:
Copy code
import org.intellij.lang.annotations.Language
Any ideas?
e

ephemient

10/23/2023, 11:11 PM
a

Adam S

10/24/2023, 12:49 AM
There's a workaround for a multiplatform
@Language
annotation https://github.com/JetBrains/java-annotations/issues/34#issuecomment-1423850122, but it has issues and it's flakey and it will probably cause you headaches
c

Conor Gould

10/24/2023, 6:22 PM
I see, thanks.