I have searched about making a conference call using Sinch Android SDK but unable to find any working example. I found one link, but there is no solution mentioned.
According to the documentation (https://www.sinch.com/docs/voice/android/#setupaconferencecall):
CallClient callClient = sinchClient.getCallClient(); Call call = callClient.callConference("<conferenceId>"); call.addCallListener(...);
My question is, If Conference ID is random then How to create Conference Room and How to add Users to that room? Is there any example or sample available for Android?
EDIT
I create one user with ID 1 and another user with ID 2. I call the function on button click on both of the user devices,
Call call = callClient.callConference("ConferenceID123");
As callConference will create the conference room on the fly. The call on both users get established but there is no voice completely blank on both user devices. And when I hang-up, there is 0 packet send or received. Can you please help me out where I am wrong? Also, Can anyone please inform me that How to record the call either placed with callUser or callConference method? The documents say contact us for recording but I haven't got any concrete solution regarding this as well.
1 Answers
Answers 1
You create your own rooms and keep a list of that and then connect any users to that room.
0 comments:
Post a Comment