Hi, On May 2, 12:44 am, Alex Hall <[email protected]> wrote: > Hi all, > I am relatively new to android. As a project for the programming class > I am in, we have to make an app in android, and, since I am blind, I > am working on a simple messaging program which will work with speech > and the vibrator for feedback. To this end, I am trying to use the > ASmack library with android1.6 (maybe 2.0). However, I get errors that > say basic components of the library do not exist, like > createConversation or packetFilter. Does anyone have experience with > this library who can tell me why this might be happening?
I'm responsible for the mess :-) There a two main problems you might have hit: 1. We got a classloading problem (found one recently, see logcat for verifier errors) -> File a bug at http://code.google.com/p/asmack/ 2. You didn't initialize the library Problem 2 is quite common, you've got to register the features / packages you'll need. See Yaxim, Beem, Buddycloud or the Phonegap/XMPP branch for examples. See http://github.com/phonegap/phonegap-android/commit/947248fad673d398b6ca188012e32497fd689d67 Regards, Rene Treffer > I import > org.jivesoftware.* to be on the safe side. TIA for any help. Oh, > please note that I do not use Eclipse because of accessibility > problems. > > -- > Have a great day, > Alex (msg sent from GMail website) > [email protected];http://www.facebook.com/mehgcap > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group > athttp://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

