Skip to main content
Version: 0.1.x

External Call Detection

External call detection feature in VideoSDK let you know, participant is on the call during meeting.

Whenever local participant accept the incoming call or place outgoing call, externalcall-started event will trigger.externalcall-started event only received by localParticipant.

For example, the meeting is running with Alice and Bob. Whenever Alice receives the call or she call someone, Alice will receive externalcall-started event.

We can access externalcall-started event through meeting object.

externalcall-started Event

private val meetingEventListener: MeetingEventListener = object : MeetingEventListener() {
// ...
override fun onExternalCallStarted() {
Log.d("#meeting", "onExternalCallAnswered")
}
};

Got a Question? Ask us on discord