Trouble making obfuscation - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:01:26Z http://stackoverflow.com/feeds/question/972126 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/972126/trouble-making-obfuscation 0 Trouble making obfuscation Daniel Moura 2009-06-09T19:46:09Z 2009-10-08T22:50:20Z <p>I'm using Antenna to build, pack and obfuscate a j2me app. Building and packing works fine.</p> <p>The project uses a 3rd party jar that is already obfuscated except by some interfaces.</p> <p>When trying to obfuscate I got several errors like: </p> <pre><code>[wtkobfuscate] Warning: i: can't find referenced class fooPackage.fooClass </code></pre> <p>Class i and fooPackage.fooClass is from this 3rd party jar that I mentioned.</p> <p><strong>UPDATE</strong>:</p> <p>This 3rd party library uses j2me-xmlrpc.jar. If I don't package all together then I won't be able to obfuscate the 3rd party interfaces and the j2me-xmlrpc.jar. (and I can't run the app this way, not sure why)</p> <p>If I package only the j2me-xmlrpc.jar and my project classes I get the this error while obfuscating</p> <pre><code>[wtkobfuscate] Warning: there were 2 instances of library classes depending on program classes. </code></pre> <p><strong>UPDATE 2:</strong></p> <p>I know this obfuscation is possible beacause in Netbeans I can do obfuscation using Proguard.</p> <p>Since Netbeans internals uses ANT to make builds I tried to copy the generated build.xml to my own build.xml.</p> <p>For obfuscation Netbeans uses the library org-netbeans-modules-mobility-antext.jar that can be used outside Netbeans. I imported this library to my project and used it without problem.</p> <p>But I get the same error I got using antenna.</p> <p>Obfuscating in Netbeans generates a lot of warnings but it still generates the obfuscated jar.</p> <p>What I'm missing?</p> http://stackoverflow.com/questions/972126/trouble-making-obfuscation/974253#974253 1 Answer by Ram for Trouble making obfuscation Ram 2009-06-10T08:11:05Z 2009-06-10T08:11:05Z <p>If the 3rd party library is obfuscated, don't include that library while you obfuscate your classes. Rather follow these steps</p> <ol> <li>Jar your classes alone (dont include 3rd party library)</li> <li>Obfuscate the jar obtained in step 1</li> <li>Unjar the obfuscated jar obtained in step 2 and the 3rd party library in some temp folder</li> <li>Jar all the unjared classes</li> <li>Preverify and package them again</li> </ol> http://stackoverflow.com/questions/972126/trouble-making-obfuscation/1157677#1157677 0 Answer by reinier for Trouble making obfuscation reinier 2009-07-21T07:12:03Z 2009-07-21T07:12:03Z <p>try using jshrink. I have much better results with it then with proguard:</p> <pre><code> &lt;java jar="obfuscator\jshrink.exe" fork="true"&gt; &lt;arg value="..\${projectdir}\${projectname}.jar"/&gt; &lt;arg value="-classpath"/&gt; &lt;arg pathref="project.class.path"/&gt; &lt;arg value="-keep"/&gt; &lt;arg value="${midletclass}"/&gt; &lt;arg value="-o"/&gt; &lt;arg value="..\${projectdir}\${projectname}.jar"/&gt; &lt;/java&gt; </code></pre> http://stackoverflow.com/questions/972126/trouble-making-obfuscation/1540950#1540950 0 Answer by Daniel Moura for Trouble making obfuscation Daniel Moura 2009-10-08T22:50:20Z 2009-10-08T22:50:20Z <p>I was using Proguard 4.3. Downgrading to Proguard 4.2 solved the problem.</p>