Wednesday, April 3, 2013

Error during Obfuscation

Trying to Obfuscate the saya code base, kept bumping into this error

Warning: there were 1 instances of library classes depending on program classes.
         You must avoid such dependencies, since the program classes will
         be processed, while the library classes will remain unchanged.
Error: Please correct the above warnings first.
The issue it seems was caused by these two classes
Warning: library class com.sun.ukit.jaxp.Parser extends or implements program class org.xml.sax.Locator 
The solution was take apart the whole code and piece it together, class by class(yes-tedious I know). But finally, it worked.!

Thanks to below link for guidance :)


http://proguard.sourceforge.net/manual/troubleshooting.html#dependency

No comments:

Post a Comment