expo / config-plugins

Out-of-tree Expo config plugins for packages that haven't adopted the config plugin system yet.
427 stars 91 forks source link

feat(react-native-google-cast): add suspendSessionsWhenBackgrounded option to IOS #231

Open Bram-dc opened 2 months ago

Bram-dc commented 2 months ago

Why

This option is to enable background streaming using react-native-google-cast.

https://github.com/react-native-google-cast/react-native-google-cast/blob/main/src/api/useCastSession.ts

This is primarily targeted at iOS which by default suspends sessions when backgrounded. Alternatively, you can set options.suspendSessionsWhenBackgrounded = false when initializing the CastContext in AppDelegate.

How

Added the option to the plugin :)

Test Plan

I do not have access to an IOS device, but I did change the jest test suite to also check if the file generated is correct. Someone should run this with the example app to verify that this option is not breaking the app.

Edit: I just did and it works correctly!