aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-01-20 22:46:48 +0000
committerKenny Root <kenny@the-b.org>2009-01-20 22:46:48 +0000
commitdeca64c5258a07afa7aa9b7c32ab46ad5ba651fe (patch)
tree0af6f852520ecb945d787b744d20eb81b95efd19 /build.xml
parent3cfb3df4c46af1e93d95326c65bacaff54d63f5e (diff)
downloadconnectbot-deca64c5258a07afa7aa9b7c32ab46ad5ba651fe.tar.gz
connectbot-deca64c5258a07afa7aa9b7c32ab46ad5ba651fe.tar.bz2
connectbot-deca64c5258a07afa7aa9b7c32ab46ad5ba651fe.zip
Bug scrub
* Try to be better about unsynchronized accesses * Don't expose references to arrays in our beans * Make sure we don't dereference null pointers * Update version string before calling aapt
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index e9ad114..64eebb8 100644
--- a/build.xml
+++ b/build.xml
@@ -107,7 +107,7 @@
</target>
<!-- Generate the R.java file for this project's resources. -->
- <target name="resource-src" depends="dirs">
+ <target name="resource-src" depends="dirs, update-version">
<echo>Generating R.java / Manifest.java from the resources...</echo>
<exec executable="${aapt}" failonerror="true">
<arg value="package" />
@@ -208,7 +208,7 @@
<!-- Package the application and sign it with a debug key.
This is the default target when building. It is used for debug. -->
- <target name="debug" depends="dex, package-res, update-version">
+ <target name="debug" depends="dex, package-res">
<echo>Packaging ${out-debug-package}, and signing it with a debug key...</echo>
<exec executable="${apk-builder}" failonerror="true">
<arg value="${out-debug-package-ospath}" />
@@ -225,7 +225,7 @@
<!-- Package the application without signing it.
This allows for the application to be signed later with an official publishing key. -->
- <target name="release" depends="dex, package-res, update-version">
+ <target name="release" depends="dex, package-res">
<echo>Packaging ${out-unsigned-package} for release...</echo>
<exec executable="${apk-builder}" failonerror="true">
<arg value="${out-unsigned-package-ospath}" />