refactor(ci): Improves CI build performance with enhanced caching (#923)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Gauvain
2025-08-13 15:43:22 +02:00
committed by GitHub
parent 57bbb59874
commit c7f0c2ec83
3 changed files with 75 additions and 19 deletions

View File

@@ -26,6 +26,13 @@ module.exports = function withCustomPlugin(config) {
// Expo 52 is not setting this
// https://github.com/expo/expo/issues/32558
config = setGradlePropertiesValue(config, "android.enableJetifier", "true");
config = setGradlePropertiesValue(config, "org.gradle.daemon", "true");
config = setGradlePropertiesValue(config, "org.gradle.parallel", "true");
config = setGradlePropertiesValue(
config,
"org.gradle.configureondemand",
"true",
);
// Increase memory
config = setGradlePropertiesValue(