CustomerSupportChat
Version 1.1
이것은 Android 응용 프로그램에 추가 할 수있는 Smack API를 사용하여 구축 된 고객 지원 채팅 라이브러리입니다.
어떻게 작동합니까?
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);
아파치 라이센스 2.0