<I got this issues in my project Kotlin Multiplatf...
# stackoverflow
r
I got this issues in my project Kotlin Multiplatform with Compose Desktop I'm trying to make an executable file (preferable .exe) with Compose Desktop and Kotlin Multiplatform according to this source. build.gradle.kts: import org.jetbrains.compose.desktop.application.dsl.TargetFormat import org.gradle.api.tasks.Copy plugins { kotlin("multiplatform") version "1.8.21" id("org.jetbrains.compose") version "1.6.11" } repositories { mavenCentral() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") google() } kotlin { jvm {...