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
- Kotlin
- Java
private val meetingEventListener: MeetingEventListener = object : MeetingEventListener() {
// ...
override fun onExternalCallStarted() {
Log.d("#meeting", "onExternalCallAnswered")
}
};
private final MeetingEventListener meetingEventListener = new MeetingEventListener() {
// ...
@Override
public void onExternalCallStarted() {
Log.d("#meeting", "onExternalCallStarted");
}
};
Got a Question? Ask us on discord