In-App Chat Callbacks
Covered here is how to set up the callback that fires with every new message received for your Android apps.
New Received Message
Replies.setOnNewReplyReceivedCallback(new Runnable() {
@Override
public void run() {
// Show an alert to notify users about a new message.
}
});Replies.setOnNewReplyReceivedCallback {
// Show an alert to notify users about a new message.
}Last updated