mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-02-18 01:52:23 +00:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
module.exports = ({ config }) => {
|
|
config.plugins.push([
|
|
"react-native-google-cast",
|
|
{ useDefaultExpandedMediaControls: true },
|
|
]);
|
|
return {
|
|
android: {
|
|
googleServicesFile: process.env.GOOGLE_SERVICES_JSON,
|
|
},
|
|
...config,
|
|
};
|
|
};
|