项目中导入jar文件时出现混淆问题
您好,我正在创建一个 j2me Polish 项目,该项目的 jar 大小与我使用的一样大 j2me 抛光,所以我需要混淆 jar 文件,
一切都工作完美,但现在我需要在我的项目中包含一个外部 jar 文件 所以当我使用 Proguard 进行混淆时,它会创建像 a.class、b.class 这样的类
,所以当我的代码到达我使用该外部 jar 文件的行时,会出现以下错误
No Class Def Found Error java.lang.NoClassDefFoundErro
MypackageName.MyClassname
更多说明
我正在使用 eclips,使用 ant 编译文件 然后将那些编译好的文件复制到wtk scr中,在wtk中构建 然后使用 proguard 进行混淆。
如何解决这个问题?
Hello I am creating a j2me polish project which jar size is very high as i am using
j2me polish so i need to obfuscate the jar files
everything is work perfect but now i need to include one external jar file in my project
so as i am doing obfuscating using Proguard it is creating classes like a.class, b.class
so when my code reach to line where i use that external jar file giving me following error
No Class Def Found Error
java.lang.NoClassDefFoundErro
MypackageName.MyClassname
For more clarification
i am using eclips, compiling files using ant
then copy those compiled file in wtk scr, build in wtk
and after that using proguard doing obfuscating.
how to solve this problem??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用/了解 Proguard 的 keep 选项 吗?
Did you use / understand the keep option of Proguard ?