forked from Ninjalama/streamyfin_mirror
15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
module.exports = ({ config }) => {
|
|
if (process.env.EXPO_TV !== "1") {
|
|
config.plugins.push([
|
|
"react-native-google-cast",
|
|
{ useDefaultExpandedMediaControls: true },
|
|
]);
|
|
}
|
|
return {
|
|
android: {
|
|
googleServicesFile: process.env.GOOGLE_SERVICES_JSON,
|
|
},
|
|
...config,
|
|
};
|
|
};
|