我试图生成ant buildfiles。但我收到错误
"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-&gt; export-&gt; Ant-buildfile
从eclipse构建当我试图从命令行构建时我收到:
$ ant debug
Buildfile: /build.xml
BUILD FAILED
Target "debug" does not exist in the project "com.Grupp01.gymapp.MainActivity".
错误和日食的屏幕截图:
答案 0 :(得分:4)
我遇到了同样的问题。解决方法是:右键单击库 - &gt;属性 - &gt; Java构建路径 - &gt;订单和出口。条目“gen”必须高于“src”(使用按钮向上,向下)。
答案 1 :(得分:0)
我已经使用这个步骤对此进行了修改。
右键点击您的项目 - &gt;属性 - &gt; Java构建路径 - &gt; “gen”应该高于“src”。所以,重新设置文件夹。它对我有用。