Home | History | Annotate | Download | only in ant
      1 <!-- This Ant build file illustrates how to process applications,
      2      by including a ProGuard-style configuration file.
      3      Usage: ant -f applications1.xml -->
      4 
      5 <project name="Applications" default="obfuscate" basedir="../..">
      6 
      7 <target name="obfuscate">
      8   <taskdef resource="proguard/ant/task.properties"
      9            classpath="lib/proguard.jar" />
     10 
     11   <proguard configuration="examples/applications.pro" />
     12 
     13 </target>
     14 
     15 </project>
     16