onMeetingLeft

Called when the local participant has left the meeting.

This event fires after calling leave or when the participant is removed from the meeting.

Code Example:


override fun onMeetingLeft() {
    Log.d("Meeting", "Left the meeting")
    // Clean up resources and navigate away
    finish()
}

See also


Called when the local participant has left the meeting, with a reason.

This overload provides the LeaveReason explaining why the participant left, such as voluntary leave, being removed, or the session ending.

Code Example:


override fun onMeetingLeft(reason: LeaveReason) {
    Log.d("Meeting", "Left meeting, reason: $reason")
}

Parameters

reason

the LeaveReason indicating why the participant left

See also

Meeting.end()