mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
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:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user