Minimum supported Gradle version is 6.1.1. Current version is 5.6.4
I'm facing this issue after updating to android studio 4.0 while Having older gradle version:
After that I have download the latest gradle version 6.4.1, after the complete download it give error of
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.
Here is an image of error:
I already tried with invalid caches/Restart , Clean Project and rebuild project and also deleted the cache folder but still facing the same issue, now I can't use lower gradel.
Solution 1:
I faced this error. so I added the line below to build.gradle(project)
file ,dependency
part:
classpath 'com.android.tools.build:gradle:3.6.0'
and I changed distributionUrl
in gradle-wrapper.properties
file to :
https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
It solved my problem I hope solve yours too.
Update 09/21/2020
Finally, I upgrade all of my plugins and libraries and It works perfectly by gradle-6.6.1-all.zip
in gradle-wrapper.properties
file and classpath 'com.android.tools.build:gradle:4.0.1'
in Gradle project in dependencies
section.
Be careful if you use greenDAO
or sqlcipher
to upgrade correctly
Solution 2:
Android studio recommended for gradle upgrade and I got similar error. I quickly found string "5.6.4" using ctrl+shift+f. I got 2 files refering to gradle version 5.6.4 and updated both of them to 6.1.1 and it worked for me.
Solution 3:
Try editing the distributionUrl
in ..\android\gradle\wrapper\gradle-wrapper.properties
to gradle-6.5-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
Solution 4:
For me, it seemed that I had upgraded the plugin version to "classpath 'com.android.tools.build:gradle:4.1.2'" but I could not get Android Studio to update to gradle 6.5 from 6.1.1 for some reason.
Eventually I downgraded the plugin to "classpath 'com.android.tools.build:gradle:4.0.0'", according to https://developer.android.com/studio/releases/gradle-plugin.
Then the IDE offered me a quickfix upgrade back to 4.1.2 and also 6.5, and after that it started working again.