完美解决:
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.
出现这个问题的原因大概是别人的项目引用的gradle包在你as下无法识别无法解压导致的,先用你本地的gradle包(没有的话https://services.gradle.org/distributions/去下载),然后再运行,没有这样的错误后,接下来按提示操作就可以
如下图:
解决方案:
首先打开AS的setting->Gradle->Gradle projects,选择Specified location ,然后选择本地的gradle 文件
本地gradle文件目录如果没有设置过的话,一般都在C盘的user-用户名-.gradle\wrapper\dists.......下面,如下图
最后点击 Apply 后,同步就完美解决啦