git-svn-id: https://zxing.googlecode.com/svn/trunk@813 59b500cc-1b3d-0410-9834-0bbf25fbcc57

This commit is contained in:
srowen 2009-01-03 14:30:45 +00:00
parent 0e253bbad1
commit 6d8febc69e

View file

@ -220,6 +220,7 @@ limitations under the License.
<!-- Convert this project's .class files into .dex files. -->
<target name="dex" depends="compile">
<echo>Converting compiled files and external libraries into ${outdir}/${dex-file}...</echo>
<echo>NOTE: This will fail unless you built core with build-no-debug.</echo>
<apply executable="${dx}" failonerror="true" parallel="true">
<arg value="--dex" />
<arg value="--output=${intermediate-dex-ospath}" />
@ -230,6 +231,7 @@ limitations under the License.
<target name="dex-optimized" depends="compile-release,optimize">
<echo>Converting compiled files and external libraries into ${outdir}/${dex-file}...</echo>
<echo>NOTE: This will fail unless you built core with build-no-debug.</echo>
<apply executable="${dx}" failonerror="true" parallel="true">
<arg value="--dex" />
<arg value="--output=${intermediate-dex-ospath}" />