Run application via gradlew with -Xmx and -Xms

前端 未结 2 1819
盖世英雄少女心
盖世英雄少女心 2021-02-11 22:57

I have an application. I run it via

gradlew run-app

Or debug

gradlew debug-app

It works. How do I pass \'-Xm

相关标签:
2条回答
  • 2021-02-11 23:31

    Add this in your gradle.properties file :

    org.gradle.jvmargs=-Xmx2000m
    

    From here

    org.gradle.jvmargs

    Specifies the jvmargs used for the daemon process. The setting is particularly useful for tweaking memory settings. At the moment the default settings are pretty generous with regards to memory.

    edit : my answer what about the gradle daemon jvm, not the app jvm. You have to use the jvmArgs property

    The extra arguments to use to launch the JVM for the process. Does not include system properties and the minimum/maximum heap size.

    0 讨论(0)
  • 2021-02-11 23:49

    Using application plugin one can use applicationDefaultJvmArgs property

    apply plugin: 'application'    
    applicationDefaultJvmArgs = ["-Xms1024m", "-Xmx2048m"]
    

    The arguments will be applied to run task and to start script of your application

    more info

    0 讨论(0)
提交回复
热议问题