Need an Android xmpp chat client to configure with openfire!

15,041

It's worth taking a look at the asmack library. It's a fork from Ignite Realtime's desktop XMPP client library, Smack, that works on Android (Ignite Realtime developed Openfire). It's generally the most commonly used Android XMPP library as far as I'm aware.

If you're not looking to extend XMPP in any way (it sounds like you just need simple chat) then any Android-compatible library will work with an Openfire server in the same way, that's part of the beauty of XMPP being a protocol.

If you were going to develop desktop clients and/or extend the server in some way, then I would suggest asmack even more strongly as it would cut down on the amount you would have to relearn.

For documentation and more background info, I would suggest having a look at the original Smack website. A lot of the code in asmack is the same as Smack and the Smack javadocs are quite detailed.

Share:
15,041
coderslay
Author by

coderslay

Experienced Technical Lead with a demonstrated history of working in the information technology and services industry. Skilled in Java, Spring MVC, NodeJS, AngularJS, Bootstrap, Jenkins, Linux, Docker, Requirements Analysis and Agile Methodologies.

Updated on June 12, 2022

Comments

  • coderslay
    coderslay about 2 years

    I am developing a chat application over android and i need an xmpp chat client that works with openfire... Can anyone suggest me in this?