Update ComposeStarter gradle structure#1362
Conversation
yschimke
commented
Mar 27, 2026
- configuration caching
- AGP and Kotlin upgrades
There was a problem hiding this comment.
Code Review
This pull request updates the project's build infrastructure by upgrading Gradle to version 9.4.1 and bumping several dependency versions, including the Android Gradle Plugin, Kotlin, and various AndroidX libraries. It also enables performance-oriented Gradle features like parallel execution, configuration cache, and isolated projects, while disabling Jetifier. A review comment suggests adding documentation for the newly enabled Gradle properties to improve maintainability and clarity for future developers.
| org.gradle.parallel=true | ||
| org.gradle.configuration-cache=true | ||
| org.gradle.isolated-projects=true |
There was a problem hiding this comment.
The previous comments explaining org.gradle.parallel were removed. It would be beneficial to add comments for org.gradle.parallel, org.gradle.configuration-cache, and org.gradle.isolated-projects to explain their purpose and benefits, especially for future maintainers. This improves the maintainability and clarity of the build configuration.
# Enables parallel execution of tasks in Gradle.
org.gradle.parallel=true
# Enables the configuration cache for faster builds.
org.gradle.configuration-cache=true
# Enables isolated projects for improved configuration cache performance and correctness.
org.gradle.isolated-projects=true