Task failed with an exception.
-----------
* What went wrong:
Could not create service of type TaskOutputFilesRepository using TaskExecutionServices.createTaskOutputFilesRepository().
> Timeout waiting to lock Build Output Cleanup Cache (***/frameworks/runtime-src/proj.android-studio/.gradle/buildOutputCleanup). It is currently in use by another Gradle instance.
Owner PID: unknown
Our PID: 758
Owner Operation: unknown
Our operation:
Lock file: ***/frameworks/runtime-src/proj.android-studio/.gradle/buildOutputCleanup/buildOutputCleanup.lock
* Try:
Run with --stacktrace option to get the stack trace. Run with --debug option to get more log output. Run with --scan to get full insights.
解决方法:
在项目根目录,终端运行以下命令。
find ~/.gradle -type f -name "*.lock" | while read f; do rm $f; done
本文详细解析了在使用Gradle构建Android项目时遇到的BuildOutputCleanup缓存锁冲突问题,提供了一种通过命令行清除Gradle锁文件的有效解决方案。
8292

被折叠的 条评论
为什么被折叠?



