代码之家  ›  专栏  ›  技术社区  ›  Raulp

Android Studio更新setDependencyCacheDir错误

  •  0
  • Raulp  · 技术社区  · 6 年前

    如何解决此错误:

    渐变版本:4.4 Android插件版本:3.1.4

    What went wrong:
    A problem occurred configuring root project 'myApplication'.
    > Failed to notify project evaluation listener.
       > com.android.build.gradle.tasks.factory.AndroidJavaCompile.setDependencyCacheDir(Ljava/io/File;)
    

    2 回复  |  直到 6 年前
        1
  •  1
  •   Awais Tariq    6 年前

    尝试删除根和项目repo中的生成文件夹,同时尝试删除gradle缓存文件夹可能会有所帮助。通常发生这种情况是因为根文件夹中有一些损坏的文件

        2
  •  0
  •   Ramana V V K    6 年前

    gradle-wrapper.properties 文件

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    zipStoreBase=GRADLE_USER_HOME
    zipStorePath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
    

    和根项目依赖关系

     dependencies {
            //Gradle dependencies 
            classpath 'com.android.tools.build:gradle:3.1.4'
    
            // Kotlin if use kotlin your project
            classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
            classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
            classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.0"
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }