Pick a reverse DNS name to identify your app (e.g. io.github.username.projectname) and run conveyor generate compose to create a new Jetpack Compose app from scratch. It will come with a Conveyor configuration and Gradle integration all set up.
Compose expects to set the window icon itself, rather than having it be taken from the executable or package automatically. You can use code like this to ensure the window icon is always set correctly:
1 2 3 4 5 6 7 8 9101112131415161718192021
funmain(){singleWindowApplication(title="Example app version ${System.getProperty("app.version")}",icon=appIcon){/* .... */}}privatevalappIcon:Painter? bylazy{// app.dir is set when packaged to point at our collected inputs.valappDirProp=System.getProperty("app.dir")valappDir=appDirProp?.let{Path.of(it)}// On Windows we should use the .ico file. On Linux, there's no native compound image format and Compose can't render SVG icons,// so we pick the 128x128 icon and let the frameworks/desktop environment rescale. On macOS we don't need to do anything.variconPath=appDir?.resolve("app.ico")?.takeIf{it.exists()}iconPath=iconPath?:appDir?.resolve("icon-square-128.png")?.takeIf{it.exists()}if(iconPath?.exists()==true){BitmapPainter(iconPath.inputStream().buffered().use{loadImageBitmap(it)})}else{null}}
importorg.jetbrains.kotlin.gradle.dsl.KotlinJvmCompileplugins{kotlin("jvm")version"1.6.20"id("org.jetbrains.compose")version"1.1.1"id("dev.hydraulic.conveyor")version"1.0.1"}version="1.0"group="dev.hydraulic.samples"repositories{mavenCentral()google()maven{url=uri("https://maven.pkg.jetbrains.space/public/p/compose/dev")name="Compose for Desktop DEV"}}compose.desktop{application{mainClass="MainKt"nativeDistributions{vendor="Hydraulic Software"description="An example of how to package a Compose Desktop app with Conveyor"}}}dependencies{// Add the Compose Desktop libraries specific to each platform to machine-specific dependency configurations.// The one that matches the current Gradle build host will be added to 'implementation' automatically, so this is sufficient.linuxAmd64(compose.desktop.linux_x64)macAmd64(compose.desktop.macos_x64)macAarch64(compose.desktop.macos_arm64)windowsAmd64(compose.desktop.windows_x64)}