refactor: remove gradle optimization properties

Removes daemon, parallel processing, and configure-on-demand gradle properties to simplify configuration and potentially avoid build conflicts.

These optimizations may cause issues in certain build environments or with specific project configurations.
This commit is contained in:
Uruk
2025-08-15 05:06:06 +02:00
parent d82767f5df
commit 4fba558c33

View File

@@ -26,13 +26,6 @@ module.exports = function withCustomPlugin(config) {
// Expo 52 is not setting this // Expo 52 is not setting this
// https://github.com/expo/expo/issues/32558 // https://github.com/expo/expo/issues/32558
config = setGradlePropertiesValue(config, "android.enableJetifier", "true"); 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 // Increase memory
config = setGradlePropertiesValue( config = setGradlePropertiesValue(