aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml217
1 files changed, 106 insertions, 111 deletions
diff --git a/build.xml b/build.xml
index 9de0ea8..aebe4f9 100644
--- a/build.xml
+++ b/build.xml
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!-- vim: set ts=4 sw=4 et: -->
<project name="ConnectBot" default="help">
-<!-- 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. -->
- <property file="local.properties" />
+ <!-- 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 build.properties file can be created by you and is never touched
- by the 'android' tool. This is the place to change some of the
- default property values used by the Ant rules.
+ <!-- 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.
Here are some properties you may want to change/update:
source.dir
@@ -17,6 +17,9 @@
out.dir
The name of the output directory. Default is 'bin'.
+ For other overridable properties, look at the beginning of the rules
+ files in the SDK, at tools/ant/build.xml
+
Properties related to the SDK location or the project target should
be updated using the 'android' tool with the 'update' action.
@@ -24,80 +27,70 @@
application and should be checked into Version Control Systems.
-->
- <property file="build.properties" />
+ <property file="ant.properties" />
- <!-- The default.properties file is created and updated by the 'android'
+ <!-- The project.properties file is created and updated by the 'android'
tool, as well as ADT.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
- <property file="default.properties" />
+ <loadproperties srcFile="project.properties" />
- <!-- Custom Android task to deal with the project target, and import the
- proper rules.
- This requires ant 1.6.0 or above. -->
- <path id="android.antlibs">
- <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
- <pathelement path="${sdk.dir}/tools/lib/sdklib.jar" />
- <pathelement path="${sdk.dir}/tools/lib/androidprefs.jar" />
- </path>
+ <!-- quick check on sdk.dir -->
+ <fail
+ message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
+ unless="sdk.dir"
+ />
-<!-- Begin custom ConnectBot stuff -->
- <property name="proguard.out.dir" value="${out.dir}/proguard.out"/>
- <property name="out.dex.input.absolute.dir" value="${proguard.out.dir}"/>
+<!-- extension targets. Uncomment the ones where you want to do custom work
+ in between standard targets -->
+<!--
+ <target name="-pre-build">
+ </target>
+ <target name="-pre-compile">
+ </target>
+
+ /* 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} */
+ <target name="-post-compile">
+ </target>
+-->
+
+ <!-- Import the actual build file.
+
+ To customize existing targets, there are two options:
+ - Customize only one target:
+ - copy/paste the target into this file, *before* the
+ <import> task.
+ - customize it to your needs.
+ - Customize the whole content of build.xml
+ - copy/paste the content of the rules files (minus the top node)
+ into this file, replacing the <import> task.
+ - customize to your needs.
+
+ ***********************
+ ****** 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"
+ -->
+ <!-- version-tag: custom -->
+ <import file="${sdk.dir}/tools/ant/build.xml" />
+
+<!-- Begin custom ConnectBot stuff -->
<!-- Output directory for .po files. -->
<property name="locale.dir" value="locale" />
<!-- Default args to pass to a2po for .po generation. -->
- <property name="a2po.args" value="--groups strings --template fortune/fortune.pot --layout 'po/fortune/fortune-%(locale)s.po'"/>
+ <property name="a2po.args" value="--groups strings --template fortune/fortune.pot --layout 'fortune/fortune-%(locale)s.po'"/>
<!-- File names for launchpad translations. -->
<property name="launchpad.export.file" value="launchpad-export.tar.gz"/>
<property name="launchpad.import.file" value="launchpad-import.tar.gz"/>
- <target name="check-proguard">
- <available file="tools/proguard.jar" property="have.proguard"/>
- </target>
-
- <target name="proguard" depends="check-proguard">
- <fail unless="have.proguard">You requested ProGuard, but you don't have the JAR available! See README</fail>
- </target>
-
- <target name="-pre-build" depends="create-out-dir, link-out-dir, update-version"/>
-
- <target name="-post-compile" depends="proguard-execute"/>
-
- <target name="remove-out-symlink">
- <symlink action="delete" link="${proguard.out.dir}" failonerror="false"/>
- </target>
-
- <target name="check-out-exists" depends="remove-out-symlink">
- <available file="${proguard.out.dir}" property="proguard.out.is.dir"/>
- </target>
-
- <target name="delete-out-dir" depends="check-out-exists" if="proguard.out.is.dir">
- <delete dir="${proguard.out.dir}"/>
- </target>
-
- <target name="create-out-dir" depends="delete-out-dir" if="have.proguard">
- <mkdir dir="${proguard.out.dir}"/>
- </target>
-
- <target name="link-out-dir" depends="delete-out-dir" unless="have.proguard">
- <symlink link="${proguard.out.dir}" resource="${out.classes.dir}"/>
- </target>
-
- <target name="proguard-execute" if="have.proguard">
- <mkdir dir="${out.dex.input.absolute.dir}"/>
- <taskdef resource="proguard/ant/task.properties"
- classpath="tools/proguard.jar" />
- <proguard configuration="proguard.flags" printusage="${out.dir}/proguard.usage">
- <injar path="${out.classes.dir}"/>
- <outjar path="${proguard.out.dir}"/>
- <libraryjar path="${android.jar}"/>
- </proguard>
- </target>
+ <target name="-pre-build" depends="update-version"/>
<target name="help">
<!-- displays starts at col 13
@@ -115,9 +108,11 @@
<echo> signatures must match.</echo>
<echo> uninstall: Uninstalls the application from a running emulator or</echo>
<echo> device.</echo>
- <echo> proguard: use before build statements like "debug" and "release"</echo>
- <echo> to enable proguard dead code removal. NOTE: You must</echo>
- <echo> have tools/proguard.jar available. See the README.</echo>
+ <echo> translations-import: Import translations from a Launchpad-style</echo>
+ <echo> Rosetta translation.</echo>
+ <echo> translations-export: Export translations to a Launchpad-style</echo>
+ <echo> Rosetta translation.</echo>
+
</target>
<target name="update-version" description="Updates the Version.java file with current Git revision">
@@ -131,9 +126,9 @@
<xpath input="AndroidManifest.xml" expression="/manifest/@android:versionName"
output="manifest.version.name" />
- <!-- checkout notrans.xml so we can ignore it in our index -->
+ <!-- tell git to ignore changes to the version xml -->
<exec executable="git">
- <arg line="checkout res/values/notrans.xml"/>
+ <arg line="update-index --assume-unchanged res/values/version.xml"/>
</exec>
<!-- find out the description of the current Git commit -->
@@ -141,46 +136,16 @@
<arg line="describe --match 'v[0-9]*' --dirty"/>
</exec>
- <replaceregexp file="${resource.absolute.dir}/values/notrans.xml" encoding="utf8" match='(\x3Cstring name="msg_version">)[^\x3C]*(\x3C/string>)'
- replace='\1${ant.project.name} ${manifest.version.name} (${git.revision} ${build.date})\2' />
+ <!-- write out to res/values/version.xml -->
+ <echo file="${resource.absolute.dir}/values/version.xml" encoding="utf8"><![CDATA[<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="msg_version" translatable="false">${ant.project.name} ${manifest.version.name} (${git.revision} ${build.date})</string>
+</resources>
+]]></echo>
<echo>Updated "msg_version" to: ${ant.project.name} ${manifest.version.name} (${git.revision} ${build.date})</echo>
</target>
- <target name="clean"
- description="Clean up the result of the build process">
- <delete dir="${out.absolute.dir}"/>
- <delete dir="${gen.absolute.dir}"/>
- <exec executable="ant" failonerror="true">
- <arg value="-f" />
- <arg value="tests/build.xml" />
- <arg value="clean"/>
- </exec>
- </target>
-
- <target name="tests" depends="install">
- <echo>Building and installing tests...</echo>
- <exec executable="ant" failonerror="true">
- <arg value="-f" />
- <arg value="tests/build.xml" />
- <arg value="install"/>
- </exec>
- <echo>Running test cases...</echo>
- <exec executable="${adb}">
- <arg value="shell" />
- <arg value="am" />
- <arg value="instrument" />
- <arg value="-w" />
- <arg value="${application-package}.tests/android.test.InstrumentationTestRunner" />
- <redirector outputproperty="test.results"/>
- </exec>
- <fail message="Some unit tests failed:${line.separator}${test.results}">
- <condition>
- <contains string="${test.results}" substring="FAILURES"/>
- </condition>
- </fail>
- </target>
-
<!-- Translations come from launchpad.net and are placed in the
locale/ subdirectory. -->
<target name="translations-import">
@@ -204,11 +169,41 @@
includes="**/*.pot **/*.po" />
</target>
-<!-- End custom ConnectBot stuff -->
+ <target name="-check-ndk">
+ <fail
+ message="ndk.dir is missing. Make sure to put it in local.properties"
+ unless="ndk.dir"
+ />
+ </target>
+
+ <target name="native-build" depends="-check-ndk">
+ <exec executable="${ndk.dir}/ndk-build" failonerror="true" />
+ </target>
+
+ <target name="native-clean" depends="-check-ndk">
+ <exec executable="${ndk.dir}/ndk-build" failonerror="true">
+ <arg value="clean" />
+ </exec>
+ </target>
+
+ <property name="lint" location="${android.tools.dir}/lint${bat}" />
+
+ <target name="lint-xml">
+ <exec executable="${lint}">
+ <arg value="--xml" />
+ <arg value="lint-results.xml" />
+ <arg path="${basedir}" />
+ </exec>
+ </target>
+
+ <target name="lint-html">
+ <exec executable="${lint}">
+ <arg value="--html" />
+ <arg value="lint-results.html" />
+ <arg path="${basedir}" />
+ </exec>
+ </target>
- <taskdef name="setup"
- classname="com.android.ant.SetupTask"
- classpathref="android.antlibs" />
+<!-- End custom ConnectBot stuff -->
- <setup />
</project>