错误:任务':app:compileDebugJavaWithJavac'的执行失败。 java.io.FileNotFoundException:

时间:2016-01-25 05:42:21

标签: android android-studio google-play-services

更新并重新启动android studio后,我收到以下错误。

  

错误:任务':app:compileDebugJavaWithJavac'的执行失败。    java.io.FileNotFoundException:/.../Workspace/MyAppName/app/build/intermediates/exploded-aar/com.google.android.gms/play-services/8.3.0/jars/classes.jar   (没有这样的文件或目录)

我已经尝试清理并重建我的项目,但每次我都遇到错误。

编辑:

我的gradle如下:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.google.android.gms:play-services:8.4.0'
 }

3 个答案:

答案 0 :(得分:6)

Instant run中存在一个错误,它已根据工具android站点修复。

enter image description here

解决方案:

升级构建工具使用alpha6构建gradle版本。

dependencies {
    classpath 'com.android.tools.build:gradle:2.0.0-alpha6'
}

答案 1 :(得分:0)

构建gradle 文件中添加代码。因为您可能错过了com.google.android.gms / play-services更新库文件,因此发生了FileNotFoundException。

   dependencies {
     classpath 'com.android.tools.build:gradle:1.5.0'
     classpath 'com.google.gms:google-services:2.0.0-alpha2'
    }
 //then complie 
   compile 'com.google.android.gms:play-services:8.3.0'

答案 2 :(得分:0)

请禁用即时运行。

在Mac上,转到“偏好设置” 导航到“构建,执行,部署>即时运行”。

取消选中更改代码后重新启动活动旁边的框

那对我有用。