My Intellij plugin does use Compose (Jewel) to ren...
# intellij-plugins
t
My Intellij plugin does use Compose (Jewel) to render the UI. My question is how can i create a distributions version that will run on all supported platform like (linux/macos/windows x64/arm). Do i just have to add all dependencies like that:
Copy code
dependencies {
    implementation(compose.desktop.linux_x64)
    implementation(compose.desktop.linux_arm64)
    implementation(compose.desktop.macos_x64)
    implementation(compose.desktop.macos_arm64)
    implementation(compose.desktop.windows_x64)
    implementation(compose.desktop.windows_arm64)
}
Or is there a clever mechanism to create extra files for all platforms and deploy them to the Plugin marketplace?
👀 2