他のいくつかの質問を参照した後、これらの回答のどれも私のプロジェクトで機能していないことがわかりました。個々のモジュールの /libs フォルダーに jar をドロップすると、ant ビルドが正しく実行され、出力が生成されます。すべての /libs フォルダーを削除し、必要なすべてのモジュールにファイル (別名) を含めた後、ant ビルドが機能しなくなりました。 ant.properties
build.properties
ant. プロパティ:
# 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
Build.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 はあるべき場所にあり、モジュールはすべて正しいクラスとパーツを使用するなどです。
考え?