> Ok Peter, I've already read this article before but I didn't understand what
> should go inside the archieve
> "myconfigfile.pro"
>
> I don't know if the problem is my English, but I couldn't understand this.
>
> In the article we have the second option. What does this mean??
>
> <proguard>
> -libraryjars ${java.home}/lib/rt.jar
the library that you need to compile the jar
> -injars in.jar
the name of the incoming jar: it is the jar used during the obfuscation
> -outjars out.jar
the name of the outcoming jar: the name of the obfuscated jar
>
> -keepclasseswithmembers public class * {
> public static void main(java.lang.String[]);
> }
**all** the main methods of the **all** the classes will be keeped
public
> </proguard>
>
> Thanks!!
> Gil
>
Check out examples in your <proguard_folder>/examples/ant/