-
Notifications
You must be signed in to change notification settings - Fork 855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Allows switching external playback mode in iOS #1816
base: main
Are you sure you want to change the base?
feat: Allows switching external playback mode in iOS #1816
Conversation
Thank you for the contribution, and I'm really sorry, that it took so long to get to a review. The last months had been quite intense for me. |
Description
Here are the specific behaviors when streaming to an Apple TV or Mac:
allowsExternalPlayback = true (default, current behavior of the audioplayers package)
allowsExternalPlayback = false
Apple Podcasts and other iOS apps use the
allowsExternalPlayback = false
setting, suggesting this is the intended behavior for pure audio apps. However, the video-like behavior withallowsExternalPlayback = true
may still be useful for some developers as it enables playback controls on the Apple TV, even if this use case is rare.Therefore, the default value is set to
false
.Checklist
fix:
,feat:
,refactor:
,docs:
,chore:
,test:
,ci:
etc).///
, where necessary.Breaking Change
Related Issues