mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 23:59:08 +00:00
17 lines
359 B
JavaScript
17 lines
359 B
JavaScript
module.exports = ({ config }) => {
|
|
if (process.env.EXPO_TV !== "1") {
|
|
config.plugins.push("expo-background-task");
|
|
|
|
config.plugins.push([
|
|
"react-native-google-cast",
|
|
{ useDefaultExpandedMediaControls: true },
|
|
]);
|
|
}
|
|
return {
|
|
android: {
|
|
googleServicesFile: process.env.GOOGLE_SERVICES_JSON,
|
|
},
|
|
...config,
|
|
};
|
|
};
|