Felipe Rotilho
11/19/2024, 2:49 PM./gradlew createDistributable command runs fine; however, it doesn't generate an AppImage, just a folder (see image below).Felipe Rotilho
11/19/2024, 2:50 PMcompose.desktop {
application {
mainClass = "cash.atto.wallet.MainKt"
nativeDistributions {
packageName = "AttoWallet"
packageVersion = "1.0.0"
linux {
targetFormats(TargetFormat.AppImage)
iconFile.set(project.file("src/commonMain/composeResources/drawable/logo.png"))
}
windows {
targetFormats(TargetFormat.Msi)
iconFile.set(project.file("src/commonMain/composeResources/drawable/logo.png"))
}
macOS {
targetFormats(TargetFormat.Dmg)
iconFile.set(project.file("src/commonMain/composeResources/drawable/logo.png"))
}
}
}
}Norbel AMBANUMBEN
10/20/2025, 7:39 AMNorbel AMBANUMBEN
10/20/2025, 7:43 AMAppImage TargetFormat
https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-native-distribution.html#basic-tasksMichael Paus
10/20/2025, 8:43 AM