From 366bc0137ec2037f5476767c988d3849913f65c4 Mon Sep 17 00:00:00 2001 From: sarendsen Date: Fri, 31 Jan 2025 13:22:51 +0100 Subject: [PATCH] WIP --- app.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app.config.js diff --git a/app.config.js b/app.config.js new file mode 100644 index 00000000..a6b72ec0 --- /dev/null +++ b/app.config.js @@ -0,0 +1,11 @@ +module.exports = ({ config }) => { + if (process.env.EXPO_TV === "1") { + config.plugins.push([ + "react-native-google-cast", + { useDefaultExpandedMediaControls: true }, + ]); + } + return { + ...config, + }; +};