You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
431 B
16 lines
431 B
<!-- 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>
|