<?xml version="1.0" encoding="UTF-8"?>1<project name="MuPDF" default="help">23<!-- The local.properties file is created and updated by the 'android' tool.4It contains the path to the SDK. It should *NOT* be checked into5Version Control Systems. -->6<loadproperties srcFile="local.properties" />78<!-- The ant.properties file can be created by you. It is only edited by the9'android' tool to add properties to it.10This is the place to change some Ant specific build properties.11Here are some properties you may want to change/update:1213source.dir14The name of the source directory. Default is 'src'.15out.dir16The name of the output directory. Default is 'bin'.1718For other overridable properties, look at the beginning of the rules19files in the SDK, at tools/ant/build.xml2021Properties related to the SDK location or the project target should22be updated using the 'android' tool with the 'update' action.2324This file is an integral part of the build system for your25application and should be checked into Version Control Systems.2627-->28<property file="ant.properties" />2930<!-- The project.properties file is created and updated by the 'android'31tool, as well as ADT.3233This contains project specific properties such as project target, and library34dependencies. Lower level build properties are stored in ant.properties35(or in .classpath for Eclipse projects).3637This file is an integral part of the build system for your38application and should be checked into Version Control Systems. -->39<loadproperties srcFile="project.properties" />4041<!-- quick check on sdk.dir -->42<fail43message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"44unless="sdk.dir"45/>464748<!-- extension targets. Uncomment the ones where you want to do custom work49in between standard targets -->50<!--51<target name="-pre-build">52</target>53<target name="-pre-compile">54</target>5556/* This is typically used for code obfuscation.57Compiled code location: ${out.classes.absolute.dir}58If this is not done in place, override ${out.dex.input.absolute.dir} */59<target name="-post-compile">60</target>61-->6263<!-- Import the actual build file.6465To customize existing targets, there are two options:66- Customize only one target:67- copy/paste the target into this file, *before* the68<import> task.69- customize it to your needs.70- Customize the whole content of build.xml71- copy/paste the content of the rules files (minus the top node)72into this file, replacing the <import> task.73- customize to your needs.7475***********************76****** IMPORTANT ******77***********************78In all cases you must update the value of version-tag below to read 'custom' instead of an integer,79in order to avoid having your file be overridden by tools such as "android update project"80-->81<!-- version-tag: 1 -->82<import file="${sdk.dir}/tools/ant/build.xml" />8384</project>858687