How may I debug why my release app (ran on my mac ...
# compose-desktop
r
How may I debug why my release app (ran on my mac via
packageReleaseDmg
) doesn't run? It just starts but no window shows up, no errors. It has something to do with proguard, as it works without it, but I cannot see anything useful in the logs other than some notes about duplicate definitions.
a
You should see the underlying error if you run the app from a terminal window. After installing the
.app
from the
.dmg
, try this command
/Applications/MyComposeApp.app/Contents/MacOS/MyComposeApp
(edit: there’s also the `runRelease`/
runReleaseDistributable
Gradle tasks, though)
r
Thank you very much, totally missed that!
👍 1