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

姜尚

02/20/2023, 3:20 PM
How to check if the JVM failed to start without any log output, I try run releaseDistribution but is ok
1
r

Ryan Smith

02/21/2023, 1:26 AM
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

姜尚

02/21/2023, 2:13 AM
@Ryan Smith I'm thank you very very v.... ery much
15 Views