Hello, I'm exploring using compose desktop for a p...
# compose-desktop
w
Hello, I'm exploring using compose desktop for a project and before I got much further I was just wondering if the ram usage of the release artifact for the basic project template is genuinely 100mb or if I'm just not setting the jvm settings right. I tried the settings below, but it still sucks up ~100mb at startup. Not a deal breaker or anything, just trying to figure out the baseline. The task I'm running is :packageReleaseMsi. I then install the msi, run the app and check ram usage in task manager.
Copy code
compose.desktop {
    application {
        mainClass = "org.test.test_compose_packaging.MainKt"

        nativeDistributions {
            targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
            packageName = "test_compose_packaging"
            packageVersion = "1.0.0"
        }

        jvmArgs += "-Xms5m"
    }
}
The install size is also ~103mb which is fine, it's just the ram usage I was a little disappointed with.
1
a
These are the typical numbers, yes.
👍 1