Ant BUILD FAILED The following error occurred while executing this line: xxx 解决方案

来源:互联网 发布:网络机顶盒视频软件 编辑:程序博客网 时间:2024/05/16 09:24

Try following steps:

  • remove the faulty director(y|ies) as follows:

    $ rm -fR $(find . -type d -name crunch|xargs)

  • when you are building, run

    $ ant clean release

  • then, clean->Build Project and:

    $ rm -fR $(find . -type d -name crunch|xargs)

Source: Android Open Source Project

0 0