想要在仿真器或物理设备上运行项目时出现Gradle错误

时间:2017-11-07 11:12:06

标签: android android-studio android-gradle

昨晚工作得很好,今天我无法运行我的项目,我得到了error

Error:Execution failed for task ':app:transformClassesWithDexBuilderForDebug'. 
com.android.build.api.transform.TransformException: 
java.nio.file.NoSuchFileException: C:\Users\Arash\.android\build-cache\...\output

尝试无效和清除缓存,将项目替换为Push之前的最新版本以及许多其他内容

enter image description here

3 个答案:

答案 0 :(得分:0)

  1. 试试这个我也面临同样的问题。
  2. 在终端执行根文件夹

      ./gradlew clean
    

答案 1 :(得分:0)

请尝试以下操作清除构建缓存:

在Windows上:

gradlew cleanBuildCache

在Mac或Linux上:

./gradlew cleanBuildCache

答案 2 :(得分:0)

在项目级别 Gradle

中修复它
  

classpath'com.google.gms:google-services:3.1.1'

为:

  

classpath'com.google.gms:google-services:3.0.0'

我认为3.1.1存在一些问题。