1. 苏葳的备忘录首页
  2. 开发工具

ProGuard的使用

eclipse proguard javaProGuard主要是一个Java混淆器,用来防止别人反编译你的代码。eclipse indigo里自带的有proguard,在项目路径下,有proguard.cfg,需要做的,只是在project.properties里面加上一句:proguard.config=proguard.cfg。但在生成andorid apk时,总是报错,错误码。。。不记得了。indigo是eclipse 3.7版本,而android sdk自带的proguard呢?android-sdk\tools\proguard下即为其版本,4.4。而proguard官网上最新版本已是4.7。

下载新版4.7的zip,解压缩,将原proguard目录打包备份,然后将4.7版的lib及bin目录覆盖sdk目录下的,然后再生成apk,居然成功。项目下产生了proguard文件夹及相应的一些文件。

但在另一个引用外部库的工程中打包apk时,发现报错

[proguard] Warning: there were 2 unresolved references to classes or interfaces.
[proguard] You may need to specify additional library jars (using ‘-libraryjars’),
[proguard] or perhaps the ‘-dontskipnonpubliclibraryclasses’ option.
[proguard] Warning: there were 5 unresolved references to program class members.
[proguard] Your input classes appear to be inconsistent.
[proguard] You may need to recompile them and try again.
[proguard] Alternatively, you may have to specify the options

总而言之是发现有警告错误。按要求在proguard.cfg中加入-dontskipnonpubliclibraryclasses 亦没有效果。忽略错误可以吗?官网问题处理中似有:try your luck with the -ignorewarnings option, or even the -dontwarn option的方法。将 -ignorewarnings 加入proguard.cfg,问题解决。

以后继续补充

原创文章,作者:苏葳,如需转载,请注明出处:https://www.swmemo.com/376.html

发表评论

邮箱地址不会被公开。 必填项已用*标注