android studio找不到指定的文件

Int*_*Tan 10 android android-studio android-gradle-plugin

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

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

我不相信这是一个编码错误,因为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'
}
Run Code Online (Sandbox Code Playgroud)

注意:我已经google了这个错误,但唯一一个也有这个问题的是这个人(android studio cant build),但答案不适用于我.

Yur*_*ets 5

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

  • 我删除了构建文件夹,重建,关闭并重新打开了项目.什么都没有帮助. (3认同)