> ## Content Index
> Fetch the complete content index at: https://sgpublic.xyz/llms.txt
> Use this file to discover other available public pages before exploring further.

# Compose Multiplatform 原生分发启动报错 “Error: sun/misc/Unsafe”
- URL: https://sgpublic.xyz/p/2026/04/6aac9cb1810a480001533618/
- Published: 2026-04-25T02:50:36.000Z
- Updated: 2026-09-18T04:59:25.000Z
- Author: Haven Madray
- Tags: 软件开发, Java/Kotlin, #wp-post

> 参考文献：[https://youtrack.jetbrains.com/issue/CMP-2686#focus=Comments-27-10105996.0-0](https://youtrack.jetbrains.com/issue/CMP-2686?ref=sgpublic.xyz#focus=Comments-27-10105996.0-0)

添加这一行：

```kotlin
compose.desktop {
    application {
        nativeDistributions {
            modules("jdk.unsupported") // 这一行
        }
    }
}

```