Hi! I noticed these messages after migrating to Ko...
# multiplatform
f
Hi! I noticed these messages after migrating to Kotlin 1.3.70. Is this something I should worry about?
Copy code
> Task :common:core:compileKotlinWatch
> Task :common:client:compileKotlinIos

Expiring Daemon because JVM heap space is exhausted
Daemon will be stopped at the end of the build after running out of JVM memory
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
Expiring Daemon because JVM heap space is exhausted
e
You likely need to increase the amount of memory available to Gradle. You can do that by adding this property in gradle.properties:
Copy code
org.gradle.jvmargs=-Xmx4096M
👍 1