SPB
SPB

Reputation: 4218

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?

Upvotes: 13

Views: 7513

Answers (4)

Flow
Flow

Reputation: 24043

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

Upvotes: 12

Robin
Robin

Reputation: 24262

It modifies Smack to allow it to work on Android.

I am not sure of what those changes are, with the exception of altering the ProviderManager mechanism so that it can load the smack.providers XML file from an Android friendly directory. By default Smack loads this from its own resource directory, which is not reachable in Android.

Upvotes: 1

Mart&#237;n Schonaker
Mart&#237;n Schonaker

Reputation: 7305

As the project description states, ASmack adds a set of patches to regular Smack. Check this conversation for further details.

Regards.

Upvotes: 5

Macarse
Macarse

Reputation: 93133

You can see how things are done in talkmyphone. I think they are using smack with android.

Upvotes: 1

Related Questions