【发布时间】:2020-09-20 15:43:42
【问题描述】:
我在更新到 android studio 4.0 后遇到了这个问题,同时拥有旧的 gradle 版本:
之后我下载了最新的gradle版本6.4.1,下载完成后报错
Unable to find method
'org.gradle.api.tasks.TaskInputs.property(Ljava/lang/String;Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputs;'.
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.
In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.
这是错误的图像:
我已经尝试过 invalid caches/Restart 、 Clean Project 和 rebuild project 并且还删除了缓存文件夹但仍然面临同样的问题, 现在我不能使用低年级了。
【问题讨论】:
-
我的猜测是您使用的第三方插件不支持 Gradle 6。您使用的是什么插件?您也可以尝试使用
-S选项在命令行上运行构建以打印出堆栈跟踪 - 也许它会指示哪个插件负责。 -
已经卸载/更新了所有显示不兼容错误的插件,
-
如已要求,请添加堆栈跟踪。您可以通过将
-s传递给命令行来获取它。