Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ProGuard Performance - Will ProGuard make my software faster?

Does anyone have experience in using ProGuard and are there already measurements about application performance beyond the class loading time?

I have a fairly complex application that could need a boost, but preparing it for ProGuard would take a few days, so I would like to hear some opinions before.

like image 891
Daniel Avatar asked Jun 09 '11 13:06

Daniel


1 Answers

Most of the bytecode optimizations that ProGuard does are done just as well or better by any mainstream JVM's JIT, so for those you shouldn't expect significant improvements (except for class loading).

like image 140
Michael Borgwardt Avatar answered Sep 29 '22 00:09

Michael Borgwardt