theapache64
03/30/2022, 7:06 AMHow onerous is it to actually create a CfD program for macOS?
theapache64
03/30/2022, 7:08 AMdmg
) for macos, you’ll need a developer account. But, you can create a jar
file using one of the gradle task (I don’t exactly recall the task name) and you can share the jar with others.theapache64
03/30/2022, 7:09 AMexe
for Windows, deb
for debain/ubuntu, and jar
for mac. See the yml file here : https://github.com/theapache64/stackzy/blob/master/.github/workflows/ci.ymlMichael Paus
03/30/2022, 11:05 AM> Task :desktop:packageDmg
The distribution is written to [...]/build/compose/binaries/main/dmg/jvm-1.0.0.dmg
What you probably mean is that you need a developer account if you want to actually distribute this DMG to other people and want them to be able to install the content without doing some tricky extra work. But if you want to you can even do that. Just tell them to apply
sudo xattr -r -d com.apple.quarantine <your-program-from-dmg>.app
on the extracted program from the DMG and it will work.theapache64
03/30/2022, 11:09 AMKebbin
03/30/2022, 10:08 PM