Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between Smack and aSmack?

I am not able to use Smack on Android whereas aSmack works perfectly? When compared the source code it looks somewhat similar, where does the difference comes from?

What is the difference between Smack and aSmack?

like image 608
SPB Avatar asked Oct 14 '10 12:10

SPB


1 Answers

Smack < 4.1 does not work on Android, mostly because of APIs missing on Android (e.g. most of the javax APIs). That is the reason the aSmack build environment was born. It is a way to modify Smack so that it can be used on Android.

Besides many minor changes the biggest changes are

  1. Disabling XMPP SASL auth methods that are not supported on Android
  2. Using apache harmony for SASL instead of the javax API

Make sure to read the README and and init the relevant code before doing any XMPP related actions.

More information can be found @ https://github.com/Flowdalic/asmack/wiki/Modifications

like image 126
Flow Avatar answered Oct 12 '22 09:10

Flow