"use strict"; import { withGradleProperties } from '@expo/config-plugins'; /** * Sets the Android extensions for ExoPlayer in `gradle.properties`. * You can choose which extensions to include in order to reduce the size of the app. */ export const withAndroidExtensions = (c, androidExtensions) => { const keys = ['RNVideo_useExoplayerDash', 'RNVideo_useExoplayerHls']; if (!androidExtensions) { androidExtensions = { useExoplayerDash: true, useExoplayerHls: true }; } return withGradleProperties(c, config => { config.modResults = config.modResults.filter(item => { if (item.type === 'property' && keys.includes(item.key)) { return false; } return true; }); for (const key of keys) { const valueKey = key.replace('RNVideo_', ''); const value = androidExtensions ? androidExtensions[valueKey] ?? false : false; config.modResults.push({ type: 'property', key, value: value.toString() }); } return config; }); }; //# sourceMappingURL=withAndroidExtensions.js.map