2

参考其他几个 问题之后,我发现这些答案都不适用于我的项目。将 jar 放入每个单独模块的 /libs 文件夹中,ant 构建可以正确运行并产生输出。在删除所有 /libs 文件夹并在我需要的每个模块中包含一个文件(又名)后,ant build 已停止工作。 ant.propertiesbuild.properties

蚂蚁属性:

# This file is used to override default values used by the Ant build system.
#
# This file must be checked in Version Control Systems, as it is
# integral to the build system of your project.

# This file is only used by the Ant script.

# You can use this to override default values such as
#  'source.dir' for the location of your java source folder and
#  'out.dir' for the location of your output folder.

jar.libs.dir=../ExternalJars/libs

构建.xml

<property file="ant.properties" />

<loadproperties srcFile="project.properties" />

<!-- version-tag: 1 -->
 <import file="${sdk.dir}/tools/ant/build.xml" />

<target name="full-debug" depends="debug">
</target>

<target name="full-release" depends="clean,release">
</target>

据我所知,这些文件是正确编写的——相对于 ant.properties 文件,路径都是正确的,jar 是它们应该在的位置,模块使用所有正确的类和部分,等等。

想法?

4

2 回答 2

8

根据另一个答案,这是我对 build.xml 脚本实现的,以支持 jar.libs.dir 属性:

<target name="-pre-compile">
    <property name="project.all.jars.path.temp" value="${toString:project.all.jars.path}" />
    <path id="project.all.jars.path">
        <path path="${project.all.jars.path.temp}"/>
        <fileset dir="${jar.libs.dir}">
            <include name="*.jar"/>
        </fileset>
    </path>
</target>

由于使用了<path path="..."/>,它看起来足够安全,即使默认情况下将多个 JAR 文件添加到路径元素。

于 2012-09-18T00:28:49.457 回答
3

这是一个已知的错误:http ://code.google.com/p/android/issues/detail?id=33194

于 2012-07-25T01:49:35.943 回答