Skip to content

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);

Listen for call events/errors

Register as an observer as shown here

Configuration

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.

Clone this wiki locally