前言
今天第一次遇到这个错误,不知道怎么解决,在群里问了一下大神,说是gradle的版本的问题,也不知道是不是这个原因,在这边记录一下笔记。

错误日志:
Error:Unable to find method ‘org.gradle.api.tasks.TaskInputs.file(Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputFilePropertyBuilder;’.
Possible causes for this unexpected error include:
- Gradle’s dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
Re-download dependencies and sync project (requires network) - The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem.
Stop Gradle build processes (requires restart) - Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.
解决方法:
1.访问 https://services.gradle.org/distributions/,并查看最新版的gradle。
2.修改项目中”gradle/wrapper/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.0-all.zip
本文记录了一次解决Gradle错误的经历。错误为无法找到方法‘org.gradle.api.tasks.TaskInputs.file(Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputFilePropertyBuilder;’。可能的原因包括依赖缓存损坏或Gradle守护进程状态异常。解决方案包括更新Gradle版本及清理相关配置。
2万+

被折叠的 条评论
为什么被折叠?



