2009-12-31 16:50:01 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project name="APRSdroid" default="help">
|
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
<!-- The local.properties file is created and updated by the 'android' tool.
|
|
|
|
It contains the path to the SDK. It should *NOT* be checked into
|
|
|
|
Version Control Systems. -->
|
|
|
|
<loadproperties srcFile="local.properties" />
|
|
|
|
|
|
|
|
<!-- The ant.properties file can be created by you. It is only edited by the
|
|
|
|
'android' tool to add properties to it.
|
|
|
|
This is the place to change some Ant specific build properties.
|
2010-11-24 23:09:35 +00:00
|
|
|
Here are some properties you may want to change/update:
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
source.dir
|
|
|
|
The name of the source directory. Default is 'src'.
|
|
|
|
out.dir
|
|
|
|
The name of the output directory. Default is 'bin'.
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
For other overridable properties, look at the beginning of the rules
|
|
|
|
files in the SDK, at tools/ant/build.xml
|
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
Properties related to the SDK location or the project target should
|
|
|
|
be updated using the 'android' tool with the 'update' action.
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
This file is an integral part of the build system for your
|
|
|
|
application and should be checked into Version Control Systems.
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
-->
|
2011-11-02 23:09:06 +00:00
|
|
|
<property file="ant.properties" />
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
<!-- The project.properties file is created and updated by the 'android'
|
2010-11-24 23:09:35 +00:00
|
|
|
tool, as well as ADT.
|
2011-11-02 23:09:06 +00:00
|
|
|
|
|
|
|
This contains project specific properties such as project target, and library
|
|
|
|
dependencies. Lower level build properties are stored in ant.properties
|
|
|
|
(or in .classpath for Eclipse projects).
|
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
This file is an integral part of the build system for your
|
|
|
|
application and should be checked into Version Control Systems. -->
|
2011-11-02 23:09:06 +00:00
|
|
|
<loadproperties srcFile="project.properties" />
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
<!-- quick check on sdk.dir -->
|
|
|
|
<fail
|
|
|
|
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
|
|
|
|
unless="sdk.dir"
|
|
|
|
/>
|
2009-12-31 16:50:01 +00:00
|
|
|
|
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
<!-- extension targets. Uncomment the ones where you want to do custom work
|
|
|
|
in between standard targets -->
|
2010-12-11 21:28:31 +00:00
|
|
|
<property name="mapviewxml" value="res/layout/mapview.xml" />
|
2010-11-24 23:09:35 +00:00
|
|
|
<target name="-pre-build">
|
2010-12-11 21:28:31 +00:00
|
|
|
<fail unless="mapsApiKey">You need to add mapsApiKey=... to local.properties</fail>
|
|
|
|
<copy file="mapview.xml.tpl" tofile="${mapviewxml}" overwrite="true">
|
|
|
|
<filterchain>
|
|
|
|
<replacetokens>
|
|
|
|
<token key="apiKey" value="${mapsApiKey}"/>
|
|
|
|
</replacetokens>
|
|
|
|
</filterchain>
|
|
|
|
|
|
|
|
</copy>
|
2011-03-08 01:27:18 +00:00
|
|
|
<tstamp>
|
|
|
|
<format property="build.date" pattern="yyyy-MM-dd" />
|
|
|
|
</tstamp>
|
|
|
|
<exec executable="git" outputproperty="git.revision">
|
|
|
|
<arg line="describe --tags --dirty=+"/>
|
|
|
|
</exec>
|
|
|
|
<copy file="version.xml.tpl" tofile="${resource.absolute.dir}/values/version.xml" overwrite="true">
|
|
|
|
<filterchain>
|
|
|
|
<replacetokens>
|
|
|
|
<token key="build_version" value="${ant.project.name} ${git.revision} ${build.date}"/>
|
|
|
|
</replacetokens>
|
|
|
|
</filterchain>
|
|
|
|
|
|
|
|
</copy>
|
2010-11-24 23:09:35 +00:00
|
|
|
</target>
|
2010-12-11 21:28:31 +00:00
|
|
|
<!--
|
2010-11-24 23:09:35 +00:00
|
|
|
<target name="-pre-compile">
|
|
|
|
</target>
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
/* This is typically used for code obfuscation.
|
|
|
|
Compiled code location: ${out.classes.absolute.dir}
|
|
|
|
If this is not done in place, override ${out.dex.input.absolute.dir} */
|
2010-11-24 23:09:35 +00:00
|
|
|
-->
|
|
|
|
<target name="-post-compile" depends="scalac, proguard">
|
|
|
|
</target>
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
<!-- Import the actual build file.
|
2009-12-31 16:50:01 +00:00
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
To customize existing targets, there are two options:
|
|
|
|
- Customize only one target:
|
|
|
|
- copy/paste the target into this file, *before* the
|
2011-11-02 23:09:06 +00:00
|
|
|
<import> task.
|
2010-11-24 23:09:35 +00:00
|
|
|
- customize it to your needs.
|
2011-11-02 23:09:06 +00:00
|
|
|
- Customize the whole content of build.xml
|
2010-11-24 23:09:35 +00:00
|
|
|
- copy/paste the content of the rules files (minus the top node)
|
2011-11-02 23:09:06 +00:00
|
|
|
into this file, replacing the <import> task.
|
2010-11-24 23:09:35 +00:00
|
|
|
- customize to your needs.
|
2011-11-02 23:09:06 +00:00
|
|
|
|
|
|
|
***********************
|
|
|
|
****** IMPORTANT ******
|
|
|
|
***********************
|
|
|
|
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
|
|
|
|
in order to avoid having your file be overridden by tools such as "android update project"
|
2010-11-24 23:09:35 +00:00
|
|
|
-->
|
2011-11-02 23:09:06 +00:00
|
|
|
<!-- version-tag: custom -->
|
|
|
|
<import file="${sdk.dir}/tools/ant/build.xml" />
|
2009-12-31 16:50:01 +00:00
|
|
|
|
|
|
|
<target name="check-scalalib">
|
|
|
|
<available file="tools/scala-library.jar" property="have.scalalib"/>
|
|
|
|
<fail unless="have.scalalib">You have to place scala-compiler.jar and scala-library.jar to tools/</fail>
|
|
|
|
</target>
|
|
|
|
<target name="check-scalac">
|
|
|
|
<available file="tools/scala-compiler.jar" property="have.scalac"/>
|
|
|
|
<fail unless="have.scalac">You have to place scala-compiler.jar and scala-library.jar to tools/</fail>
|
|
|
|
</target>
|
|
|
|
|
2011-11-02 23:09:06 +00:00
|
|
|
<target name="scalac" depends="-compile, check-scalalib, check-scalac">
|
2009-12-31 16:50:01 +00:00
|
|
|
<taskdef resource="scala/tools/ant/antlib.xml"
|
|
|
|
classpath="tools/scala-compiler.jar:tools/scala-library.jar" />
|
|
|
|
<scalac force="changed" deprecation="on"
|
2010-11-24 23:09:35 +00:00
|
|
|
srcdir="${source.absolute.dir}" includes="**/*.scala"
|
2010-10-15 18:35:53 +00:00
|
|
|
bootclasspathref="android.target.classpath"
|
2010-11-24 23:09:35 +00:00
|
|
|
destdir="${out.classes.absolute.dir}">
|
2009-12-31 16:50:01 +00:00
|
|
|
<classpath>
|
2010-11-24 23:09:35 +00:00
|
|
|
<pathelement location="${out.classes.absolute.dir}"/>
|
2009-12-31 16:50:01 +00:00
|
|
|
<fileset dir="tools" includes="*.jar"/>
|
2011-06-12 12:30:30 +00:00
|
|
|
<fileset dir="${jar.libs.dir}" includes="*.jar"/>
|
2009-12-31 16:50:01 +00:00
|
|
|
</classpath>
|
|
|
|
</scalac>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="check-proguard">
|
|
|
|
<available file="tools/proguard.jar" property="have.proguard"/>
|
|
|
|
<fail unless="have.proguard">ProGuard is required to build! Copy proguard.jar to tools/</fail>
|
|
|
|
</target>
|
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
<property name="optimized.dir" value="${out.absolute.dir}/optimized" />
|
2011-11-02 23:09:06 +00:00
|
|
|
<target name="proguard" depends="scalac, check-proguard">
|
2009-12-31 16:50:01 +00:00
|
|
|
<taskdef resource="proguard/ant/task.properties"
|
|
|
|
classpath="tools/proguard.jar" />
|
2010-11-24 23:09:35 +00:00
|
|
|
<mkdir dir="${optimized.dir}" />
|
2011-01-26 02:26:53 +00:00
|
|
|
<proguard configuration="proguard.cfg">
|
2011-06-12 12:30:30 +00:00
|
|
|
-injars ${out.classes.absolute.dir}:${jar.libs.dir}:tools/scala-library.jar(!META-INF/MANIFEST.MF,!library.properties)
|
2010-11-24 23:09:35 +00:00
|
|
|
-outjars ${out.absolute.dir}/classes.min.jar
|
2010-10-15 18:35:53 +00:00
|
|
|
-libraryjars ${toString:android.target.classpath}
|
2010-11-24 23:09:35 +00:00
|
|
|
-printusage ${optimized.dir}/proguard.usage
|
2009-12-31 16:50:01 +00:00
|
|
|
</proguard>
|
|
|
|
</target>
|
|
|
|
|
2010-11-24 23:09:35 +00:00
|
|
|
<target name="-dex" depends="-post-compile">
|
|
|
|
<echo>Converting compiled files and external libraries into ${intermediate.dex.file}...</echo>
|
2009-12-31 16:50:01 +00:00
|
|
|
<apply executable="${dx}" failonerror="true" parallel="true">
|
|
|
|
<arg value="--dex" />
|
2010-11-24 23:09:35 +00:00
|
|
|
<arg value="--output=${intermediate.dex.file}" />
|
|
|
|
<fileset dir="${out.absolute.dir}" includes="*.min.jar"/>
|
2009-12-31 16:50:01 +00:00
|
|
|
</apply>
|
|
|
|
</target>
|
|
|
|
</project>
|