Call didn't end when the provider end call from their side
See original GitHub issueDescription
When a call was ongoing with the provider. In which, many others are also joined. Some from the web, some from ios and some from android. During a call, when the provider ends the call, All other joined members call also ended automatically but in android, It’s not working.
Code to start the call:
val defaultOptions = JitsiMeetConferenceOptions.Builder()
.setAudioMuted(true)
.setVideoMuted(true)
.setSubject(state.res.class_name)
.setToken(state.res.meeting_token)
.setServerURL(URL(BuildConfig.CONFERENCE_URL))
.setUserInfo(JitsiMeetUserInfo(ss.getJitsiUserInfoBundle()))
.setFeatureFlag(Constant.INVITE_ENABLED,false)
.setFeatureFlag(Constant.LIVE_STREAMING_ENABLED,false)
.setFeatureFlag(Constant.PIP_ENABLED,false)
.setRoom(BuildConfig.CONFERENCE_URL.plus(state.name))
.setWelcomePageEnabled(false)
.build()
JitsiMeetActivity.launch(activity,defaultOptions)
Current behavior
When a call was ongoing with the provider. In which, many others are also joined. Some from the web, some from ios and some from android. During a call, when the provider ends the call, All other joined members call also ended automatically but in android, It’s not working.
Expected Behavior
After provider ends call from their side then call should also end from the user side automatically.
Possible Solution
Steps to reproduce
Environment details
I mostly tested on android versions: 8, 9, 10. I am using jitsi SDK without any modification:
implementation(‘org.jitsi.react:jitsi-meet-sdk:2.8.2’) { transitive = true }
Issue Analytics
- State:
- Created 3 years ago
- Comments:17 (5 by maintainers)
Top GitHub Comments
I am really sorry for my disrespectful comment. There was nothing about my attitude. I replied without thinking anything as I was in a hurry. Sorry again for my such comment. @saghul Sorry to you also.
@kaswan24 There is: https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-android-sdk#broadcasting-actions see the HANG_UP action.