android studio找不到指定的文件

时间:2015-04-24 05:09:17

标签: android android-studio android-gradle

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

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

我不相信这是一个编码错误,因为android studio并没有告诉我我的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),但答案并不适用于我。

1 个答案:

答案 0 :(得分:5)

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