-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add documentation on Screen Sharing for mobile app #14
Conversation
|
||
# Streaming from background | ||
|
||
On Android, it is possible to continue streaming when app is in background. Unfortunately this functionality is not available on iOS (due to Apple limitations) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick: Are you sure this is true? I think it's possible to achieve using CallKit (at least audio, this is what google meets does), however our app does not support it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is investigation done by Angelika. We might work on this in future, to make it work somehow.
guide/react-native/screensharing.mdx
Outdated
|
||
### Android | ||
|
||
On Android devices, screen share feature is available right after SDK is installed in app. No further actions are required. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue: This is not true. Screen sharing won't work on Android >=24 if you don't enable enableForegroundService
, as we need a foreground service for that to work.
Description
Add info about screen sharing and background run of app (for React Native)