-
Notifications
You must be signed in to change notification settings - Fork 4
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
Is/feature/handling multiple calls #340
Conversation
- Deprecated telnyxClient.call - Updated Client UI to Support multiple Calls
README.md
Outdated
@@ -194,10 +194,28 @@ We can then use this method to create a listener that listens for an invitation | |||
|
|||
When we receive a call we will receive an InviteResponse data class that contains the details we need to accept the call. We can then call the acceptCall method in TelnyxClient from our ViewModel: | |||
|
|||
### Handling Multiple Calls | |||
The Telnyx WebRTC SDK allows for multiple calls to be handled at once. In order to handle multiple calls, you can use the callId to differentiate between calls. |
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.
In order to handle multiple calls => You can use the callId to differentiate the calls.
README.md
Outdated
4. EndCall `currentCall.endCall(callId: UUID)` | ||
|
||
|
||
|
||
## Adding push notifications | ||
The Telnyx Android Client WebRTC SDK makes use of Firebase Cloud Messaging in order to deliver push notifications. If you would like to receive notifications when receiving calls on your Android mobile device you will have to enable Firebase Cloud Messaging within your application. |
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.
If you would like to receive notifications when receiving calls on your Android mobile device you will have to enable Firebase Cloud Messaging within your application. => If you want to receive notifications for incoming calls on your Android mobile device you have to enable Firebase Cloud Messaging within your application
WebRTC-29965- Ticket Description.
Handle Multiple Calls
Deperecated
telnyxClient.call.[option]
👴 👶 Behaviors
Before changes
SDK only Supported one Global Call
After changes
SDK Supports Multiple Calls
✋ Manual testing
Inbound/OutBound Calls