1 <?xml version=
"1.0" encoding=
"UTF-8"?>
2 <project name=
"FonBot" default=
"help">
4 <!-- The local.properties file is created and updated by the 'android' tool.
5 It contains the path to the SDK. It should *NOT* be checked into
6 Version Control Systems. -->
7 <property file=
"local.properties" />
9 <!-- The ant.properties file can be created by you. It is only edited by the
10 'android' tool to add properties to it.
11 This is the place to change some Ant specific build properties.
12 Here are some properties you may want to change/update:
15 The name of the source directory. Default is 'src'.
17 The name of the output directory. Default is 'bin'.
19 For other overridable properties, look at the beginning of the rules
20 files in the SDK, at tools/ant/build.xml
22 Properties related to the SDK location or the project target should
23 be updated using the 'android' tool with the 'update' action.
25 This file is an integral part of the build system for your
26 application and should be checked into Version Control Systems.
29 <property file=
"ant.properties" />
31 <!-- if sdk.dir was not set from one of the property file, then
32 get it from the ANDROID_HOME env var.
33 This must be done before we load project.properties since
34 the proguard config can use sdk.dir -->
35 <property environment=
"env" />
36 <condition property=
"sdk.dir" value=
"${env.ANDROID_HOME}">
37 <isset property=
"env.ANDROID_HOME" />
40 <!-- The project.properties file is created and updated by the 'android'
43 This contains project specific properties such as project target, and library
44 dependencies. Lower level build properties are stored in ant.properties
45 (or in .classpath for Eclipse projects).
47 This file is an integral part of the build system for your
48 application and should be checked into Version Control Systems. -->
49 <loadproperties srcFile=
"project.properties" />
51 <!-- quick check on sdk.dir -->
53 message=
"sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
58 Import per project custom build rules if present at the root of the project.
59 This is the place to put custom intermediary targets such as:
62 -post-compile (This is typically used for code obfuscation.
63 Compiled code location: ${out.classes.absolute.dir}
64 If this is not done in place, override ${out.dex.input.absolute.dir})
69 <import file=
"custom_rules.xml" optional=
"true" />
71 <!-- Import the actual build file.
73 To customize existing targets, there are two options:
74 - Customize only one target:
75 - copy/paste the target into this file, *before* the
77 - customize it to your needs.
78 - Customize the whole content of build.xml
79 - copy/paste the content of the rules files (minus the top node)
80 into this file, replacing the <import> task.
81 - customize to your needs.
83 ***********************
84 ****** IMPORTANT ******
85 ***********************
86 In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
87 in order to avoid having your file be overridden by tools such as "android update project"
90 <!-- Compiles this project's .java files into .class files. -->
91 <target name=
"-compile" depends=
"-pre-build, -build-setup, -code-gen, -pre-compile">
92 <do-only-if-manifest-hasCode elseText=
"hasCode = false. Skipping...">
93 <!-- merge the project's own classpath and the tested project's classpath -->
94 <path id=
"project.javac.classpath">
95 <path refid=
"project.all.jars.path" />
96 <path refid=
"tested.project.classpath" />
97 <path path=
"${java.compiler.classpath}" />
99 <javac encoding=
"${java.encoding}"
100 source=
"${java.source}" target=
"${java.target}"
101 debug=
"true" extdirs=
"" includeantruntime=
"false"
102 destdir=
"${out.classes.absolute.dir}"
103 bootclasspathref=
"project.target.class.path"
105 classpathref=
"project.javac.classpath"
106 fork=
"${need.javac.fork}">
108 <src path=
"${source.absolute.dir}" />
109 <src path=
"${gen.absolute.dir}" />
110 <compilerarg line=
"${java.compilerargs}" />
113 <!-- if the project is instrumented, intrument the classes -->
114 <if condition=
"${build.is.instrumented}">
116 <echo level=
"info">Instrumenting classes from ${out.absolute.dir}/classes...
</echo>
118 <!-- build the filter to remove R, Manifest, BuildConfig -->
120 appPackage=
"${project.app.package}"
121 libraryPackagesRefId=
"project.library.packages"
122 filterOut=
"emma.default.filter"/>
124 <!-- define where the .em file is going. This may have been
125 setup already if this is a library -->
126 <property name=
"emma.coverage.absolute.file" location=
"${out.absolute.dir}/coverage.em" />
128 <!-- It only instruments class files, not any external libs -->
129 <emma enabled=
"true">
130 <instr verbosity=
"${verbosity}"
132 instrpath=
"${out.absolute.dir}/classes"
133 outdir=
"${out.absolute.dir}/classes"
134 metadatafile=
"${emma.coverage.absolute.file}">
135 <filter excludes=
"${emma.default.filter}" />
136 <filter value=
"${emma.filter}" />
141 </do-only-if-manifest-hasCode>
143 <!-- version-tag: custom -->
144 <import file=
"${sdk.dir}/tools/ant/build.xml" />