Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给出以下参数时,
-injars C:\a.jar -injars C:\b.jar -outjars C:\Temp
proguard 会将处理后的 a.jar 和 b.jar 生成到 C:\Temp 中。非常聪明,但有时没有必要。有没有办法禁用 proguard 打包 *.jar 并将实际类复制到 C:\Temp?
当输入被打包在 jars 中时,没有选项让 ProGuard 写入解压缩的输出。最接近的近似值是将输出组合在一个 jar 中:
-injars C:\a.jar -injars C:\b.jar -outjars C:\out.jar