hey folks, I’m facing the following warning after ...
# multiplatform
n
hey folks, I’m facing the following warning after moving to Kotlin 1.8.10 from 1.7.*:
w: Opt-in requirement marker kotlin.Experimental is unresolved. Please make sure it’s present in the module dependencies
I couldn’t find any references to this particular opt-in/annotation in my code though.
a
might be a dependency that hasn’t been upgraded to Kotlin 1.8
n
@Alex Acosta thank you!
i
kotlin.Experimental annotation was deprecated and then removed. It was replaced with RequireOptIn, but in general you don't need to pass it to compiler arguments anymore. So check the compiler arguments in your build
n
@ilya.gorbunov thanks! Eventually I found that that opt-in was applied by one of our internal Gradle plugins. Mystery solved 🎉
115 Views