4

我正在尝试生成 ant 构建文件。但我收到一个错误

"The build class path order of the source directories of project library is not correct. Exported Ant buildfile will not compile your sources correctly until you swap the order of these directories:
gen<->src"

我使用 file->export->Ant-buildfile 从 eclipse 构建

当我尝试从命令行构建时,我收到:

$ ant debug
Buildfile: /build.xml

BUILD FAILED
Target "debug" does not exist in the project "com.Grupp01.gymapp.MainActivity".

错误和日食的屏幕截图: 在此处输入图像描述

4

2 回答 2

4

我有同样的问题。解决方法是:右键单击库 -> 属性 -> Java 构建路径 -> 排序和导出。条目“gen”必须在“src”之后(使用向上、向下按钮)。

于 2014-02-02T13:05:13.773 回答
0

我已经使用这个步骤解决了这个问题。

右键单击您的项目-> 属性-> Java 构建路径-> “gen”应该高于“src”。所以,重新排列文件夹。它对我有用。

于 2014-10-28T08:30:45.873 回答