Trouble making obfuscation - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T18:01:26Zhttp://stackoverflow.com/feeds/question/972126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/972126/trouble-making-obfuscation0Trouble making obfuscationDaniel Moura2009-06-09T19:46:09Z2009-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#9742531Answer by Ram for Trouble making obfuscationRam2009-06-10T08:11:05Z2009-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#11576770Answer by reinier for Trouble making obfuscationreinier2009-07-21T07:12:03Z2009-07-21T07:12:03Z<p>try using jshrink. I have much better results with it then with proguard:</p>
<pre><code> <java jar="obfuscator\jshrink.exe" fork="true">
<arg value="..\${projectdir}\${projectname}.jar"/>
<arg value="-classpath"/>
<arg pathref="project.class.path"/>
<arg value="-keep"/>
<arg value="${midletclass}"/>
<arg value="-o"/>
<arg value="..\${projectdir}\${projectname}.jar"/>
</java>
</code></pre>
http://stackoverflow.com/questions/972126/trouble-making-obfuscation/1540950#15409500Answer by Daniel Moura for Trouble making obfuscationDaniel Moura2009-10-08T22:50:20Z2009-10-08T22:50:20Z<p>I was using Proguard 4.3. Downgrading to Proguard 4.2 solved the problem.</p>