Wojtek
12/10/2025, 11:42 AMlinkReleaseFrameworkIos* tasks run in parallel?
I do have org.gradle.parallel=true and most other tasks run in parallel just fine except for the iOS linking. From what I see it should be possible to run them in parallel without problem yet they are run sequentially… any hints?
(btw. is it possible to speed up the linking? building everything else is about ~1minute but ios linking takes ~10 minutes…)Adam S
12/10/2025, 1:14 PMorg.gradle.parallel=true makes tasks from separate subprojects run in parallel.
To allow any task to run in parallel you need to enable configuration cache
https://docs.gradle.org/current/userguide/configuration_cache.htmlWojtek
12/10/2025, 5:43 PMorg.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
org.gradle.configuration-cache.problems=warntapchicoma
12/11/2025, 9:23 AMWojtek
12/11/2025, 6:05 PMtapchicoma
12/11/2025, 6:05 PM