Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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:

(Screen shot attached)

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:

Attach 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.

like image 911
Aqib Avatar asked Jun 02 '20 08:06

Aqib


People also ask

Which Gradle version is compatible with JDK 11?

Gradle version 4.10. 3 seems also to solve it.


2 Answers

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

like image 173
Anice Jahanjoo Avatar answered Sep 21 '22 14:09

Anice Jahanjoo


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.

like image 20
prabhat awasthi Avatar answered Sep 20 '22 14:09

prabhat awasthi