1<?xml version="1.0" encoding="UTF-8"?> 2<project name="volley-rules" default="help"> 3 4 <!-- A rule to generate the JAR for inclusion in an Android 5 application. Output file will be bin/volley.jar --> 6 <target name="jar" depends="-compile"> 7 <jar destfile="bin/volley.jar" 8 basedir="bin/classes" /> 9 </target> 10</project> 11