Core Functions
This section contains the functions of the Channelize.io Android Call SDK.
Start Video/Voice Call
Invoke this function to start a call from anywhere in Channelize.io Android UI SDK.
* @param CALL_TYPE The type of call you want to initiate. Must be one of the Constants.VOICE_CALL or Constants.VIDEO_CALL.
* @param USER_MODEL The user model instance which contains the information of the user with whom you want to make the call.
GlobalFunctionsUtil.startVoiceVideoCall(CALL_TYPE, USER_MODEL);
Launch Channelize UI SDK (With Call SDK)
Invoke this function to return to the home page of Channelize.io Android UI SDK. Useful when you want to return to the home page after call completion or disconnect.
Intent intent = new Intent(context, ChannelizeMainActivity.class);
startActivity(intent);