I've made a IM client that uses the asmack .jar library to communicate with google IM service server.

Now I am trying to export my application from eclipse and use the proguard tool to obfuscate my classes. The problem is that after exporting the project and running it, I can't log on to google because I get errors from the asmack lib...
one of the errors: 01-21 09:52:19.602: WARN/System.err(24297): java.lang.UnsupportedOperationException: java.lang.NoSuchMethodException: values I also get NoSuchClassException and some names of packages from asmack.

What settings do I have to make to get this work? Thank you!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Problem solved... I had to put all the classes noticed in the error in the -keep public class property of progurad

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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