Skip to content

Start a chat

Kristiyan Petrov edited this page Apr 26, 2022 · 9 revisions
BandyerIntent bandyerChatIntent = new BandyerIntent.Builder()
	.startWithChat(MainActivity.this /* starting context */)
	.with("user_A") // we are creating a chat with user A
	.build();
                
startActivity(bandyerChatIntent);

Listen for chat events/errors

Register as an observer as shown here

Configuration

SimpleChatConfiguration Most common type of configuration for chat. Follow the link for more details.

SimpleCallConfiguration Most common type of configuration for call. Follow the link for more details.

Customize Configuration Customize the configuration at your desire. Follow the link for more details.

Clone this wiki locally