CustomerSupportChat
Version 1.1
これは、Smack APIを使用して構築されたカスタマーサポートチャットライブラリで、Androidアプリケーションに追加できます。
どのように機能しますか?
XMPPサーバーの詳細、ユーザーのXMPPアカウントの詳細、XMPPクライアントのどこかにあるカスタマーサポートエグゼクティブのXMPP IDを入力する必要があります。ライブラリは、アプリユーザーとカスタマーサポートエグゼクティブがチャットするためのチャットウィンドウを開きます。
スクリーンショット

allprojects {
repositories {
maven {
url 'https://jitpack.io'
}
}
}
dependencies {
implementation 'com.github.Asutosh11:CustomerSupportChat:1.1'
}
ChatConnection mChatConnection = new ChatConnection();
mChatConnection.setxmppCustomerUsername("test1");
mChatConnection.setxmppCustomerPassword("test1");
mChatConnection.setxmppPortNo("5222");
mChatConnection.setxmppHostName("asutosh.p1.im");
mChatConnection.setxmppServiceName("asutosh.p1.im");
mChatConnection.setxmppIdOfSupportExecutive("[email protected]");
mChatConnection.setchatWindowTitle("Support chat window");
ChatActivity.startChat(mChatConnection, MainActivity.this);
Apacheライセンス2.0