Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to pose a question as to which XMPP library would be the best choice nowadays, for Android development.

  • I've been using the patched Smack library from here as is suggested in many other questions here in SO. However, that's a patched version of the Smack API from two years ago. And although it generally works well I'm exploring any other, more recent options.

  • I've been looking at the official Smack API and after a little research, it seems it might work just fine nowadays (although I have not tried it yet in a real application).

  • There's also another solution I came across, Beem's aSMACK library. Beem is a fairly new XMPP client for android and from what I understand they are using their own patched version of aSMACK.

  • Finally, there's aSMACK but that too hasn't been updated for quite some time (as the site suggests).

Do you have any other suggestions or can you explain why I should choose one of the above over the rest?

share|improve this question
1  
What did you go with in the end? I am trying to decide whether to use official smack or not? – Tom Jun 10 '11 at 14:29
@Tom: I continued using the first option and never changed to a different version because the project development was halted soon after this post. However, I am inclined to use ASmackService in the future, as mentioned below in the answer by Flow, since I like minimal. – alkar Jun 13 '11 at 19:10
1  
Just a ping / note, I've re-opened this in favor of the duplicate that caused this to be closed. – Tim Post Aug 21 '11 at 17:27
7  
I think that closing this question is a big mistake. Being involved in XMPP on Android I can tell that is the only reliable and up to date resource when it comes to the question "How can I use XMPP on Android?" on the whole net. By closing it, you take a high quality value from SO. The question was open for over a year without problems and questions that asked the same where closed as duplicates pointing to this question. I don't even see the point in closing it as "not constructive": It's based on a real world problem, involves facts and references. See also upvote and fav count. – Flow Feb 18 '12 at 10:23
@casperOne Could you explain why the question was closed? – Flow Feb 21 '12 at 12:04
show 7 more comments

closed as not constructive by casperOne Feb 12 '12 at 18:40

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 30 down vote accepted

All XMPP Android Apps I am aware of use aSmack somehow.

  • Beem changes the asmack build process to use a fixed revision of the officially svn of smack. Also they add aditional functionality to smack within their source. Their asmack lib can be found here
  • If you use the standard smack repo from asmack, https://github.com/rtreffer/smack, you will get a heavily patched smack 3.1.0 with improved bytestreams and Entity Capabilities (XEP-0115) support.
  • asmack development has stalled so far, as the original author of asmack seems to focus now on AsmackService, which follows a more lightweight approach than a ported smack for android, specially designed for smartphones, but afaik only with basic stanza sending/receiving features.

I currently use asmack with my own fork of smack for my project. The fork contains at the moment some additional patches, is in sync with upstream smack development and works very well for me. I have tested so far:

  • Sending and receiving files
    • via IBB
    • via Socks Proxies
    • via Local Socks Proxy
  • DNS SRV lookups
  • MUC
  • Service Discovery
  • Entity Capabilities
  • In-Band Registration

My aSmack fork - the build environment for smack - can be found on GitHub. Jar's can be found @ asmack.freakempire.de. The Smack version used by aSmack can be found here: https://github.com/Flowdalic/smack

Suggestions, improvements and merge requests are always welcome. :)

share|improve this answer
6  
Merged Smack 3.2.0 into asmack. Check out the branches on github :) – Flow Jun 14 '11 at 18:20
I will take a look as soon as I get some free time :D – alkar Jun 15 '11 at 0:41
Just a ping, I've re-opened the question. I don't see any compelling reason to merge them. – Tim Post Aug 21 '11 at 17:28
Edited comments > hi all > I am using asmack for developing my xmpp client,I am facing a problem > When i come from 1st time login I start my chatting with user B and receiving messages from user B also that is fine.i switch off my wifi and switch on it again then programatically reconnecting my jabber server and again login my account,after reconnecting I am sending messages to user B that is fine but when user B sending me messages that messages on my side not receiving .I don't know what's is wrong with it.plz guide – aftab Jun 28 '12 at 13:32
hi Flow > how we can merge existing asmack with latest smack ? or it is availabel wherer from I can download asmack with latest smack ? – aftab Aug 15 '12 at 16:28
show 2 more comments

I have found very useful this project http://dev.jabbim.cz/ajabbim is based on aSmack libray. And also Beem http://www.beem-project.com/projects/beem/files which has a nicer interface and features.

share|improve this answer
hi Dayerman > I explore the jabbim it looks jabbim not handling the auto reconnection internet connection . . . – aftab Jun 28 '12 at 13:38
Hi all,I am facing same problem using asmack my app not doing auto reconnect,anyone reach at solution? – aftab Aug 15 '12 at 15:53

Not the answer you're looking for? Browse other questions tagged or ask your own question.