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