Files
streamyfin/app.config.js
Fredrik Burmester 0d7edca1ad wip
2025-07-15 11:23:35 +02:00

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,
};
};