Anyone had success creating AppImages? The `./grad...
# compose-desktop
f
Anyone had success creating AppImages? The
./gradlew createDistributable
command runs fine; however, it doesn't generate an AppImage, just a folder (see image below).
For reference, this is my config
Copy code
compose.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"))
            }
        }
    }
}