why running on iOS is crazy time consuming? can I ...
# compose-ios
h
why running on iOS is crazy time consuming? can I change any settings or do anything about it?
c
As in slow compile?
h
exactly. can I improve it somehow?
c
Make sure you have incremental caching on, should be a couple of gradle flags, but tbh it's just much slower
you have mutliple build steps
so it will always be slower unforutnatly
h
does it make sense to be for ~7 mins on iOS against <1 min on Android?
c
yeah thats about right. My realease android build takes like 30 seconds, my reason ios build takes like 10 minutes if I'm lucky
Incremental ios builds should be about a minute or so tho, so you might have incremental builds off
lemme find the flags
I think there on by default, but some of the kmp project templtes have them disabled
back in kt 1.9 etc it was prety flakey and would need to bust cache, unless you are changing pod dependences you should be able to leave incremenal on
gradle.properties
fyi
h
I'm using kotlin 2 atm