CustomerSupportChat
Version 1.1
Dies ist eine Chat -Bibliothek für Kundenunterstützung, die mit Smack API erstellt wurde, die Sie zu Ihren Android -Anwendungen hinzufügen können.
Wie funktioniert es?
Sie müssen Ihre XMPP -Serverdetails, Details zum XMPP -Konto Ihres Benutzers und XMPP -ID des Customer Support Executive an anderer Stelle auf einem XMPP -Client eingeben. Die Bibliothek öffnet ein Chat -Fenster für Ihren App -Benutzer und den Customer Support Executive zum Chat.
Screenshots

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 -Lizenz 2.0