When I run `./gradlew build`, I'm getting this mes...
# gradle
s
When I run
./gradlew build
, I'm getting this message in the CLI very frequently.
Copy code
Expiring Daemon because JVM heap space is exhausted
any suggestions?
m
You can give more heap to Gradle by adding something like this to your
gradle.properties
:
Copy code
org.gradle.jvmargs=-Xmx2g
☝️ 2
s
thank you!