美文网首页Android开发版本适配
Timeout waiting to lock file has

Timeout waiting to lock file has

作者: gooodong | 来源:发表于2019-06-27 22:35 被阅读0次

Timeout waiting to lock file hash cache (C:\Users\Nietzche.gradle\caches\4.4\fileHashes).

It is currently in use by another Gradle instance.
Owner PID: 3564
Our PID: 18860
Owner Operation:
Our operation:
Lock file: C:\Users\Nietzche.gradle\caches\modules-2\modules-2.lock

解决版本:
杀掉进程 3564

步骤:

1.找到进程
tasklist |findstr "进程id号"
tasklist |findstr 3564

2.杀死
taskkill /f /t /im "进程id或者进程名称"
taskkill /f /t /im 3564

3.查询进程是否还在
tasklist |findstr "进程id号"
tasklist |findstr 3564

相关文章

网友评论

    本文标题:Timeout waiting to lock file has

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