Android Smack chat client

15,031

Solution 1

Finally I got the Concrete implementation

Anyone who want to develop chat client then follow the steps mentioned below.

Go to link

http://www.beem-project.com/projects/beem/files

Download

asmack-android-7-source-beem.zip

Now modify this source as per your requirement.

You will find the lib asmack-android-7-beem.jar to obtain javadoc for this lib its same as javadoc for smack what i did is as follows.

Download source smack-3.2.1 from link below

http://www.igniterealtime.org/downloads/index.jsp

When you extract the jar you will get the folder named javadoc now just attach this folder to asmack-android-7-beem.jar by going to the properties of your project.

Hip Hip Hurray....

Solution 2

Smack doesn't work on android out of the box, you may want to use aSmack (http://code.google.com/p/asmack/) which is a port of smack for Android.

Solution 3

You can't use vanilla Smack prior Smack 4 on Android. Have a look at "Android and XMPP: Currently available solutions"

Share:
15,031
Ashwin N Bhanushali
Author by

Ashwin N Bhanushali

Having profound knowledge in Software architecture and Development. Specialised in Architecting Mobile applications. Have a sound knowledge of various Programming languages(java,scala,javascript,c#,swift),Software Development Methodologies(Waterfall--Agile),Programming Paradigms(OOP,functional) and Programming styles(Procedural,Reactive).

Updated on June 21, 2022

Comments

  • Ashwin N Bhanushali
    Ashwin N Bhanushali about 2 years

    Hi freinds I an using Smack3.2.1.jar downloaded from following url

    http://www.igniterealtime.org/downloads/index.jsp

    I added jar to my buildpath But when I run the application I get the following Error log

    10-12 13:11:59.464: ERROR/AndroidRuntime(1957): FATAL EXCEPTION: main
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957): java.lang.VerifyError: org.jivesoftware.smack.sasl.SASLMechanism
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at java.lang.Class.getDeclaredConstructors(Native Method)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at java.lang.Class.getConstructor(Class.java:477)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at org.jivesoftware.smack.SASLAuthentication.authenticate(SASLAuthentication.java:314)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:203)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at org.jivesoftware.smack.Connection.login(Connection.java:348)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at org.apache.android.xmpp.SettingsDialog.onClick(SettingsDialog.java:54)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at android.view.View.performClick(View.java:2408)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at android.view.View$PerformClick.run(View.java:8816)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at android.os.Handler.handleCallback(Handler.java:587)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at android.os.Handler.dispatchMessage(Handler.java:92)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at android.os.Looper.loop(Looper.java:123)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at android.app.ActivityThread.main(ActivityThread.java:4627)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at java.lang.reflect.Method.invokeNative(Native Method)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at java.lang.reflect.Method.invoke(Method.java:521)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
    10-12 13:11:59.464: ERROR/AndroidRuntime(1957):     at dalvik.system.NativeStart.main(Native Method)
    

    Can anyone help ...