1
16
我也遇到过类似的问题,但似乎已通过build.properties文件中的以下设置解决了此问题:
我使用相对路径将src链接到其他_项目,但您应该能够使用绝对路径。如果这样做了,您可能应该将其放在local.properties中。 根据build.properties中的注释,如果我的SDK版本<2.0,我将使用它:
|
2
6
如果有兴趣的话,我想我会回答我自己的问题,现在已经解决了。
2) 添加了行
在安装程序上方build.xml中的重写编译目标中(加上通过从ant r3.xml规则中剪切/粘贴来重写它所依赖的所有目标) 3) 在build.xml中添加了一个与“aidl”相同的新目标“aidl2”,但它有
我还添加了如下行:
|
3
6
我不能发表评论,因为我没有足够的声誉,但如果添加一个源文件夹与前面的答案一致,则在以后构建jar时会失败: compile: [javac] Compiling 463 source files to /home/xxx/documents/eclipse/xxx/deploy/xxx/bin/classes [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] Note: Some input files use unchecked or unsafe operations. [javac] Note: Recompile with -Xlint:unchecked for details. [javac] Creating empty /home/xxx/documents/eclipse/xxx/deploy/xxx/bin/classes/fr/xxx/android/socialintegration/facebook/package-info.class [echo] Creating library output jar file... BUILD FAILED /home/xxx/applis/android/android-sdk-linux/tools/ant/build.xml:570: The following error occurred while executing this line: /home/xxx/applis/android/android-sdk-linux/tools/ant/build.xml:680: The following error occurred while executing this line: /home/xxx/applis/android/android-sdk-linux/tools/ant/build.xml:744: /home/xxx/documents/eclipse/xxx/deploy/xxx/src;../xxxdata/src does not exist. 错误的部分在jar的构建中,该jar使用source.absolute.dir作为对ant无效的filset。 但我现在没有任何解决办法,我不明白为什么其他人会设法让它工作。。。 |
4
2
添加
上面提到的Android SDK工具版本20.0.3+(项目目标:Android 2.2+,API级别:8+)。 |
5
0
|
6
0
至少在以后版本的生成工具上,问题是放入此属性的值将传递到
等等,相对于:
|
gEdringer · Linux上的Zip命令包括整个文件夹结构 6 年前 |
prat22 · 如何使用ant和jmeter生成html报告 6 年前 |
DAIRAV · 适用于java 10的Apache Ant版本 6 年前 |
Mark Aquino · 使用目标重写时设置ant目标的顺序 6 年前 |
Trock Fuller · 解压任务期间ANT连接文件 7 年前 |
Rinesh raja · Jenkins ant构建相关问题 7 年前 |