hackedteam/core-blackberry

View on GitHub
bb-tools/proguard4.7/examples/ant/applications1.xml

Summary

Maintainability
Test Coverage
<!-- 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>