Darshdeep Hora
04/17/2024, 10:24 PM./gradlew build
and this is the gradle-wrapper.properties file -
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
kotlin.daemon.jvmargs=-Xmx8g
org.gradle.jvmargs=-Xmx8g
Is there anything missing? Seems like no matter how much memory I provide it is always out of heap space. Thanks in advance!Thomas Broyer
04/17/2024, 10:57 PMgradle.properties
file at the root of the project (next to the gradlew
script), not into gradle/wrapper/gradle-wrapper.properties
.
https://docs.gradle.org/current/userguide/build_environment.htmlDarshdeep Hora
04/18/2024, 2:12 AM