It is currently in use by another Gradle instance解决

在使用gradle编译Android工程的时候,报如下错误:

It is currently in use by another Gradle instance

尝试解决方法如下:

1、删除工程中的.gradle和.idea目录后重新编译

2、Andorid studio File->invalidate caches/Restart

3、ps -ef | grep java 和ps -ef | grep gradle 并杀掉找到的线程

以上三种方法单个使用或者组合使用,有时能成功,有时不能成功。接下来的方法亲测会成功

1、terminal中执行命令 find ~/.gradle -type f -name "*.lock" | while read f; do rm $f; done

2、build->clean project

你可能感兴趣的:(It is currently in use by another Gradle instance解决)