Have you seen anything similar? > Caused by: or...
# compose-desktop
n
Have you seen anything similar?
Caused by: org.jetbrains.skiko.LibraryLoadException: Cannot find skiko-windows-x64.dll.sha256, proper native dependency missing.
Kotlin 1.8.20 + Compose/Desktop 1.4.0
o
Yes, most likely caused by running the app from the gutter play button. That’s a regression in 1.4, missing runtime dependency. Use gradle’s
run
task, it works properly. cc @alexey.tsvetkov
n
most likely caused by running the app from the gutter play button
@orangy you are right, I used the "play" button to run the app which causes the error above. Executing the "compose desktop/run" task directly works. The "play" button also works if I remove the
Copy code
kotlin.mpp.import.enableKgpDependencyResolution=true
line from
gradle.properties
. (But I cannot do that because my goal is to reevaluate Gradle included builds with multiplatform projects, which feature should theoretically work in Kotlin 1.8.20 but needs this setting.)
w
is any solution here?