Hello all :slightly_smiling_face: Is there a way t...
# build-tools
t
Hello all 🙂 Is there a way to "speed up" editing
.gradle
files in IntelliJ? It gets stuck for a few second when I type each character, like it's saving/reloading.. Very frustrating Also, Gradle eats up my RAM incrementally, I think I messed my setup 😕 Do you have any advice regarding these issues? Thanks! K
g
It may be the auto-import of gradle that is responsible of it. Try to deselect it in your gradle settings.
t
Thanks for replying @gaetan, I will try that. 🙂 I also stumbled upon gradle.properties, where I saw a
kotlin.incremental
thing, is this useful and/or necessary? Thanks 🙂
g
It’s available an JVM (not Js): https://kotlinlang.org/docs/reference/using-gradle.html#incremental-compilation It can make your compilation times really small.
K 1
t
Thanks for checking!