android: proguard 混淆导入的 jar
我制作了一个 IM 客户端,它使用 asmack .jar 库与 google IM 服务服务器进行通信。
现在我尝试从 eclipse 导出我的应用程序并使用 proguard 工具来混淆我的类。 问题是,导出项目并运行后,我无法登录谷歌,因为我从 asmack lib 中收到错误...
错误之一:01-21 09:52:19.602:WARN/System.err(24297):java.lang.UnsupportedOperationException:java.lang.NoSuchMethodException:值
我还从 asmack 获得 NoSuchClassException 和一些包名称。
我必须进行哪些设置才能完成这项工作? 谢谢你!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题解决了...我必须将错误中注意到的所有类放在 progurad 的 -keep 公共类属性中
Problem solved... I had to put all the classes noticed in the error in the -keep public class property of progurad