本文主要是介绍Gradle's dependency cache may be corrupt解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题描述:
1 2 3 4 5 6 7 |
|
解决方法:
1.Delete the .gradle directories both in your home directory and at the top level of your project.
Gradle's cache directoires aren't affected by the "Clear caches and restart" option.
就是删除下面的文件夹:自己目录和项目目录:
2.如果上面还没有解决,就下边:
gradle-wrapper.properties里修改了gradle的版本,与之前没有报错的gradle版本一致。就可以了
我是改为:
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
这篇关于Gradle's dependency cache may be corrupt解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!