You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.3 KiB

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createBuildGradlePropsConfigPlugin = createBuildGradlePropsConfigPlugin;
exports.updateAndroidBuildPropertiesFromConfig = updateAndroidBuildPropertiesFromConfig;
exports.updateAndroidBuildProperty = updateAndroidBuildProperty;
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 !== null && sourceConfig !== void 0 ? 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 = createBuildGradlePropsConfigPlugin([{
propName: 'expo.jsEngine',
propValueGetter: config => {
var _ref, _config$android$jsEng, _config$android;
return (_ref = (_config$android$jsEng = (_config$android = config.android) === null || _config$android === void 0 ? void 0 : _config$android.jsEngine) !== null && _config$android$jsEng !== void 0 ? _config$android$jsEng : config.jsEngine) !== null && _ref !== void 0 ? _ref : 'jsc';
}
}], 'withJsEngineGradleProps');
exports.withJsEngineGradleProps = withJsEngineGradleProps;
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);
if (value) {
// found the matched value, add or merge new property
const newProp = {
type: 'property',
key: name,
value
};
if (oldPropIndex >= 0) {
gradleProperties[oldPropIndex] = newProp;
} else {
gradleProperties.push(newProp);
}
} else if (options !== null && options !== void 0 && options.removePropWhenValueIsNull && oldPropIndex >= 0) {
gradleProperties.splice(oldPropIndex, 1);
}
return gradleProperties;
}
//# sourceMappingURL=BuildProperties.js.map