Obfuscating Java code with ProGuard

2

Problem:

I'm getting warnings from ProGuard and I can not seem to obfuscate my .jar , it's the first time I get these warnings and I can not finish the obfuscation.

Problem details:

Note:

Application is working, within .jar are all required% (dependencies), however ProGuard gives me these warnings .

    
asked by anonymous 21.02.2014 / 19:10

2 answers

1

This is because the standard Proguard pointing only mentions the rt.jar lib, manually pointing to the jce.jar lib that everything will be solved.

    
27.05.2014 / 20:49
0

The error is giving you the solution:

  

"21 unresolved references to classes and interfaces.   you must add libraries or update their versions. If your code   works without the missing classes, you can suppress the alerts with the   option ' -dontwarm '

    
21.02.2014 / 19:21