美文网首页Android 踩坑记
Android Studio编译失败提示"It is

Android Studio编译失败提示"It is

作者: 自己找知己 | 来源:发表于2016-07-20 13:47 被阅读254次

    Android Studio 编译项目时失败,Terminal控制台提示:It is currently in use by another Gradle instance,最终Build Failed。在StackOverFlow上面找到了解决方案,在Terminal中执行如下指令:

    find ~/.gradle -type f -name "*.lock" | while read f; do rm $f; done
    

    等待命令执行成功,重新clean,build后成功解决该问题。

    相关文章

      网友评论

        本文标题:Android Studio编译失败提示"It is

        本文链接:https://www.haomeiwen.com/subject/vguvjttx.html