Any advice on how to speed up kotlin multiplatform...
# kotlin-native
s
Any advice on how to speed up kotlin multiplatform builds? When building the first time via CLI, my package takes 10+ minutes, and subsequent builds take over 5 minutes. My package only has a few small classes.
r
Gradle build cache helps a lot. There's tips here too: https://kotlinlang.org/docs/native-improving-compilation-time.html
👍 1