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"))
}
}
}
}