16 lines
431 B
XML
16 lines
431 B
XML
![]() |
<!-- 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>
|