-
Notifications
You must be signed in to change notification settings - Fork 4
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);
Register as an observer as shown here
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.