https://kotlinlang.org logo
#compose-desktop
Title
# compose-desktop
m

Marc

09/23/2023, 1:57 PM
Can I somehow rename the created installer file from compose? Like giving it a custom name instead of the generated
1
g

Greg Steckman

09/23/2023, 4:55 PM
did you try something like
Copy code
compose.desktop {
	application {
		nativeDistributions {
			packageName = "name you want"
		}
	}
}
thank you color 1
m

Marc

09/26/2023, 10:41 AM
Does this refer to the Jar/Installer Filename?
Turned out, I've already set this field, but the Filename is still generated by gradle itself
Seems to be like {PACKAGE_NAME}-{VERSION}