I stumbled across <this article> about kotlin.incr...
# gradle
n
I stumbled across this article about kotlin.incremental.useClasspathSnapshot, which says:
it is compatible with the Gradle Build cache.
Now for the stupid question - what does this mean? Is Kotlin incompatible with the build cache if one doesn’t use this flag? And what does being incompatible mean?
t
there are a bunch of issues related to old incremental compilation and build cache. New IC solves them as well
n
Thanks Yahor, so if one can’t use the new IC (for example on multiplatform) it is recommendable to disable the build cache? I’m trying to learn more about it exactly because I’m seeing some issues on multiplatform (stale code not recompiled).
t
better to report the issues 😉 New IC for now only supports JVM
n
I’ll try 😄 I could not figure out how to reproduce yet, it just happens sometimes.