This commit is contained in:
sarendsen
2025-01-31 13:22:51 +01:00
parent 65c4a1340d
commit 366bc0137e

11
app.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = ({ config }) => {
if (process.env.EXPO_TV === "1") {
config.plugins.push([
"react-native-google-cast",
{ useDefaultExpandedMediaControls: true },
]);
}
return {
...config,
};
};