Eg. We use UseDTO class in J2ME Polish, then it is renamed as aa.class by Proguard.
To overcome the solution, use 'keep' option of obfuscator in build.xml file of J2ME Polish app.
<obfuscator name="Proguard" unless="test">
<keep class="com.abc.UseDTO">
</obfuscator>
What the above statement does is obfuscate all the class except UserDTO.
Now you can use UserDTO class in web application or any other project.
Thanks
What the above statement does is obfuscate all the class except UserDTO.
Now you can use UserDTO class in web application or any other project.
Thanks