如何防止proguard重新打包injars?
当给出以下参数时,
-injars C:\a.jar
-injars C:\b.jar
-outjars C:\Temp
proguard 将生成处理后的 a.jar 和 b.jar 到 C:\Temp 中。非常聪明,但有时没有必要。有没有办法禁用 proguard 打包 *.jar 并将实际的类复制到 C:\Temp?
When giving the parameters below,
-injars C:\a.jar
-injars C:\b.jar
-outjars C:\Temp
proguard will generate processed a.jar and b.jar into C:\Temp. Very intelligent, but sometimes not necessary. Is there a way to disable proguard from packaging *.jar and copy the actual classes to C:\Temp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当输入打包在 jar 中时,没有选项让 ProGuard 写入未打包的输出。最接近的近似是将输出合并到一个 jar 中:
There is no option to let ProGuard write unpacked output when the input is packed in jars. The closest approximation is to combine the output in a single jar: