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.
Gradle version 4.10. 3 seems also to solve it.
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.
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
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With