summaryrefslogtreecommitdiff
path: root/examples/ant/applications1.xml
blob: 6df5789eb030349042ec5d1049a530076171e299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- This Ant build file illustrates how to process applications,
     by including a ProGuard-style configuration file.
     Usage: ant -f applications1.xml -->

<project name="Applications" default="obfuscate" basedir="../..">

<target name="obfuscate">
  <taskdef resource="proguard/ant/task.properties"
           classpath="lib/proguard.jar" />

  <proguard configuration="examples/applications.pro" />

</target>

</project>