1) While starting the conversations list activity or individual chat screen you need to make key
ConversationUIService.CONTEXT_BASED_CHAT to false like below
Intent intent = new Intent(context, ConversationActivity.class);
intent.putExtra(ConversationUIService.CONTEXT_BASED_CHAT, false);
startActivity(intent);
2) Add the setting ApplozicClient.getInstance(context).setContextBasedChat(false); in onSuccess callback of UserLoginTask
You can disable the context based chat view
1) While starting the conversations list activity or individual chat screen you need to make key ConversationUIService.CONTEXT_BASED_CHAT to false like below
2) Add the setting ApplozicClient.getInstance(context).setContextBasedChat(false); in onSuccess callback of UserLoginTask