Hello,

I want to pass the build process the --core-libary option. But in ADT
I don't see such an option. So in Version 1.1 --core-library could be
inserted into the build.xml and build was successfull when using ant.
It looked like this:

-------
    <target name="dex" depends="compile">
        <echo>Converting compiled files and external libraries into $
{outdir}/${dex-file}...</echo>
        <apply executable="${dx}" failonerror="true" parallel="true">
            <arg value="--dex" />
            <arg value="--core-library" />
            <arg value="--output=${intermediate-dex-ospath}" />
            <arg path="${outdir-classes-ospath}" />
            <fileset dir="${external-libs}" includes="*.jar"/>
        </apply>
    </target>
-------

In 1.5 build.xml as well as the hole build process was heavitly
altered. Now even the dx.jar is gone. The build.xml works differently,
and I dont see where to put --core-library. There is also no
documentation for where to put it.

Can anyone give me a hind?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to