android ant 打包报错:  [aapt] invalid resource directory name:


错误如下:

[aapt] invalid resource directory name: /home/liaoli/android/project/workspace3/BaseLibrary/bin/res crunch



BUILD FAILED
/home/liaoli/android/Tools/eclipseTools/android-sdk-linux/tools/ant/build.xml:601: The following error occurred while executing this line:
/home/liaoli/android/Tools/eclipseTools/android-sdk-linux/tools/ant/build.xml:653: The following error occurred while executing this line:

/home/liaoli/android/Tools/eclipseTools/android-sdk-linux/tools/ant/build.xml:698: null returned: 1


原因:

原因分析

透过错误信息我们可以了解到,错误的原因是在编译目录 bin/res 目录中产生了一个叫crunch 的目录,而根据 android 规范这是不允许的,所以就出现了这个错误。

解决办法有如下三个
  1. 将 eclipse 的自动编译先去掉勾选(crunch 是ecliplse 生成的),然后在执行ant打包。
  2. 修改 androidsdk/tools/ant/build.xml 中 aapt.ignore.assets 的值参照
     
  3. 在配置好ant 的执行环境后 cd 到源码目录 然后执行 ant release

你可能感兴趣的:(android,ant,打包)