How to check if the JVM failed to start without an...
# compose-desktop
u
How to check if the JVM failed to start without any log output, I try run releaseDistribution but is ok
1
r
You could try running your JAR directly in a terminal like
java -jar path/to/jar/file
. If you're on Windows there's a windows specific platform setting to open a console with your app when you run it:
Copy code
nativeDistributions {
    windows {
        console = true
    }
}
u
@Ryan Smith I'm thank you very very v.... ery much