-
Notifications
You must be signed in to change notification settings - Fork 4
Start a call
Kristiyan Petrov edited this page Apr 26, 2022
·
16 revisions
BandyerIntent bandyerCallIntent = new BandyerIntent.Builder()
.startWithAudioVideoCall(this /* context */ )
/* .startWithAudioUpgradableCall(this) */ // audio call that may upgrade into audio&video call
/* .startWithAudioCall(this) */ // audio only call
.with(new ArrayList<>(Arrays.asList("user_A", "user_B", "user_C"))
.build();
startActivity(bandyerCallIntent);
Register as an observer as shown here
SimpleCallConfiguration Most common type of configuration for call. Follow the link for more details.
SimpleChatConfiguration Most common type of configuration for chat. Follow the link for more details.
Customize Configuration Customize the configuration at your desire. Follow the link for more details.