aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml')
-rw-r--r--third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml b/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
new file mode 100644
index 0000000000..6df5789eb0
--- /dev/null
+++ b/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
@@ -0,0 +1,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>