-
Notifications
You must be signed in to change notification settings - Fork 7k
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
onConferenceTerminated is not invoked #7010
Comments
Hi, To me it seem that you request help on you own changes to the code? If so please go to the community forum. I'm a community contributor and not directly affiliated with the Jitsi team. |
Well, you are launching a new You need to use the join method in your activity which extends from JitsiMeetActiovity if you want to customize the behavior instead of launching a new one. |
@saghul Hi, I'm getting what you are saying here. but I'm unable to implement it.
could you please provide a code example? |
Look at the examples here: https://github.com/jitsi/jitsi-meet-sdk-samples I don't think you need to subclass the activity at all. |
I was trying to implement my Jitisi class as follows. changed as follows,
But the example doesn't seems to implementing any help? |
It's not needed since the activity finishes on its own. |
@saghul I need to notify the other users in the conference when a one user leaves. So my current plan is to invoke a method in the So it is important to me to override the Thanks |
@saghul after few hours of researching I found that following code works. I was able to work on this by implementing
|
Hi @erandakarachchi @saghul , After implementing this custom activity 'onConferenceTerminated' & 'onConferenceJoined' working perfectly fine. Any guess on the issue? Thanks in advance! |
Not sure what the issue is. but here is a sample application that I've created and it's working fine. |
HI @erandakarachchi , Can you please try running your above project & let me know,if you can reproduce the same at your end? Thanks in advance! |
@sunilkumarjena21 |
Hi @erandakarachchi , My Jitsi version: 'implementation ('org.jitsi.react:jitsi-meet-sdk:2.8.3') { transitive = true }' I guess upgrading the version solves this issue. Just one last question ..How to enable PIP mode in this Custom activity.? ' override fun onUserLeaveHint() { Thanks in advance! |
Description:
I have used Jitsi pre build sdk from maven. and implemented my class as follows.
implementation ('org.jitsi.react:jitsi-meet-sdk:2.+') { transitive = true }
But the
onConferenceTerminated
method doesn't seems to be calling.Expected behavior:
Invoke the
onConferenceTerminated
method after user left the conference.Actual behavior:
onConferenceTerminated
is not invoked.Server information:
-Building Platform : Mac OS Catalina Version 10.15.3 (19D76)
Client information:
Additional information:
I've tested with the project in jitsi-meet. It seems to work fine.
I couldn't figure out what was missing here.
The text was updated successfully, but these errors were encountered: