I'm getting the following error for in a common mp...
# multiplatform
o
I'm getting the following error for in a common mpp module of mine:
Cannot access built-in declaration 'kotlin.Nothing'. Ensure that you have a dependency on the Kotlin standard library
s
You still need an explicit dependency on
stdlib-jdk8
for the jvm artifact, otherwise the overall configuration is invalid
o
I understand, so
implementation(kotlin("stdlib-jdk8"))
?
s
Yes.