How to skip screens using adapter #3379
carocao-msft
started this conversation in
Show and tell
Replies: 1 comment
-
For anyone else relying on |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone, this is a show and tell about how to skip configuration screens and end call screens when using our composite.
By using the adapter functions, you can skip configuration screen and set mic/camera default state, skip end call screen and replace it with your own custom end call experience.
Skipping Configuration Screen:
Current API ( Deprecated ):
Skip config screen with mic and camera maintaining precall state
Skip config screen with mic on and camera maintaining precall state
Pass a boolean value to adapter.joinCall
New API:
Skip config screen with mic and camera maintaining precall state
(joinCall(), joinCall({}), joinCall({microphoneOn: 'keep'}), joinCall({cameraOn: 'keep'} will achieve the same effect)
Skip config screen with mic on and camera on
Skip config screen with mic off and camera off
Note that when configuration screen is skipped, you will need to handle precall permission settings on your own.
Skipping End Call Screen:
Beta Was this translation helpful? Give feedback.
All reactions