android studio 找不到指定的文件

android studio cannot find the file specified

每当我尝试 运行 我的 android 应用程序时,我都会在 运行 消息日志中收到一条错误消息。

I/O Error: D:\Apps\Application\app\build\intermediates\classes\debug\app.apk (The system cannot find the file specified)

我认为这不是编码错误,因为 android 工作室没有告诉我 java 类 或 xml 布局中存在错误,但如果您确实需要代码,请发表评论。我认为错误出在 gradle 依赖项中。谁能解释一下如何解决这个问题?

Gradle 依赖关系:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'com.google.android.gms:play-services:7.0.0'
}

注意:我用谷歌搜索了这个错误,但唯一遇到这个问题的人是这个人 (android studio cant build),但答案不适用于我。

尝试关闭项目,删除路径 D:\Apps\Application\app\build\intermediates\classes\ 上的文件夹 classes,重新打开项目并重建。当我遇到同样的问题时,它帮助了我。