我使用proguard ( mtj插件中的支持)来混淆一个包含一些第三方jars的项目,但它给了我错误:
Your input classes appear to be inconsistent.
You may need to recompile them and try again.
Alternatively, you may have to specify the options
'-dontskipnonpubliclibraryclasses' and/or
'-dontskipnonpubliclibraryclassmembers'.似乎proguard查找JavaSE中的类,而不是JavaME中的类。只有使用第三方jars的项目才会发生这种情况。
发布于 2010-04-13 14:58:05
我看到的一件事是,当我使用LG等OEM提供的第三方API时,我需要将防范混淆级别设置为8,而不是9,这是最高级别。希望这一切顺利。
https://stackoverflow.com/questions/2624288
复制相似问题