101 lines
4.1 KiB
JavaScript
101 lines
4.1 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.createBuildGradlePropsConfigPlugin = createBuildGradlePropsConfigPlugin;
|
|
exports.updateAndroidBuildPropertiesFromConfig = updateAndroidBuildPropertiesFromConfig;
|
|
exports.updateAndroidBuildProperty = updateAndroidBuildProperty;
|
|
exports.withNewArchEnabledGradleProps = exports.withJsEngineGradleProps = void 0;
|
|
function _androidPlugins() {
|
|
const data = require("../plugins/android-plugins");
|
|
_androidPlugins = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
/**
|
|
* Creates a `withGradleProperties` config-plugin based on given config to property mapping rules.
|
|
*
|
|
* The factory supports two modes from generic type inference
|
|
* ```ts
|
|
* // config-plugin without `props`, it will implicitly use the expo config as source config.
|
|
* createBuildGradlePropsConfigPlugin<ExpoConfig>(): ConfigPlugin<void>;
|
|
*
|
|
* // config-plugin with a parameter `props: CustomType`, it will use the `props` as source config.
|
|
* createBuildGradlePropsConfigPlugin<CustomType>(): ConfigPlugin<CustomType>;
|
|
* ```
|
|
*
|
|
* @param configToPropertyRules config to property mapping rules
|
|
* @param name the config plugin name
|
|
*/
|
|
function createBuildGradlePropsConfigPlugin(configToPropertyRules, name) {
|
|
const withUnknown = (config, sourceConfig) => (0, _androidPlugins().withGradleProperties)(config, config => {
|
|
config.modResults = updateAndroidBuildPropertiesFromConfig(sourceConfig ?? config, config.modResults, configToPropertyRules);
|
|
return config;
|
|
});
|
|
if (name) {
|
|
Object.defineProperty(withUnknown, 'name', {
|
|
value: name
|
|
});
|
|
}
|
|
return withUnknown;
|
|
}
|
|
|
|
/**
|
|
* A config-plugin to update `android/gradle.properties` from the `jsEngine` in expo config
|
|
*/
|
|
const withJsEngineGradleProps = exports.withJsEngineGradleProps = createBuildGradlePropsConfigPlugin([{
|
|
propName: 'hermesEnabled',
|
|
propValueGetter: config => ((config.android?.jsEngine ?? config.jsEngine ?? 'hermes') === 'hermes').toString()
|
|
}], 'withJsEngineGradleProps');
|
|
|
|
/**
|
|
* A config-plugin to update `android/gradle.properties` from the `newArchEnabled` in expo config
|
|
*/
|
|
const withNewArchEnabledGradleProps = exports.withNewArchEnabledGradleProps = createBuildGradlePropsConfigPlugin([{
|
|
propName: 'newArchEnabled',
|
|
propValueGetter: config => (config.android?.newArchEnabled ?? config.newArchEnabled)?.toString()
|
|
}], 'withNewArchEnabledGradleProps');
|
|
function updateAndroidBuildPropertiesFromConfig(config, gradleProperties, configToPropertyRules) {
|
|
for (const configToProperty of configToPropertyRules) {
|
|
const value = configToProperty.propValueGetter(config);
|
|
updateAndroidBuildProperty(gradleProperties, configToProperty.propName, value);
|
|
}
|
|
return gradleProperties;
|
|
}
|
|
function updateAndroidBuildProperty(gradleProperties, name, value, options) {
|
|
const oldPropIndex = gradleProperties.findIndex(prop => prop.type === 'property' && prop.key === name);
|
|
const oldProp = oldPropIndex >= 0 ? gradleProperties[oldPropIndex] : null;
|
|
if (value) {
|
|
// found the matched value, add or merge new property
|
|
const newProp = {
|
|
type: 'property',
|
|
key: name,
|
|
value
|
|
};
|
|
if (oldProp && oldProp.type === 'property') {
|
|
try {
|
|
const prevValue = JSON.parse(oldProp.value);
|
|
const newValue = JSON.parse(value);
|
|
if (Array.isArray(prevValue) && Array.isArray(newValue)) {
|
|
const prevArrayWithStringifiedValues = prevValue.map(v => JSON.stringify(v));
|
|
const newArrayWithStringifiedValues = newValue.map(v => JSON.stringify(v));
|
|
const mergedValues = [...new Set([...prevArrayWithStringifiedValues, ...newArrayWithStringifiedValues])].map(v => JSON.parse(v));
|
|
oldProp.value = JSON.stringify(mergedValues);
|
|
return gradleProperties;
|
|
}
|
|
} catch {}
|
|
oldProp.value = value;
|
|
return gradleProperties;
|
|
}
|
|
gradleProperties.push(newProp);
|
|
return gradleProperties;
|
|
}
|
|
if (options?.removePropWhenValueIsNull && oldPropIndex >= 0) {
|
|
gradleProperties.splice(oldPropIndex, 1);
|
|
return gradleProperties;
|
|
}
|
|
return gradleProperties;
|
|
}
|
|
//# sourceMappingURL=BuildProperties.js.map
|