Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle version 1.8 is required. Current version is 1.6

There is a new Android Studio update: https://sites.google.com/a/android.com/tools/recent/androidstudio030released

The link says:

The improved performance is made possible by changes in Gradle 1.8 and Android Gradle plugin version 0.6.+

So I changed my dependencies like this:

buildscript {     repositories {         mavenCentral()     }     dependencies {         classpath 'com.android.tools.build:gradle:0.6.+'     } 

But I don't know where I can change the Gradle 1.6 to 1.8 ...

And when I compile the app I've got this error:

Gradle: A problem occurred evaluating project.

Gradle version 1.8 is required. Current version is 1.6

Where can I change the version ?

Thanks in advance :)

like image 657
nsvir Avatar asked Oct 18 '13 23:10

nsvir


People also ask

How do I change the current version of Gradle?

You can specify the Gradle version in either the File > Project Structure > Project menu in Android Studio, or update your Gradle version using the command line. The preferred way is to use the Gradle Wrapper command line tool, which updates the gradlew scripts.

How do I check my current Gradle version?

In Android Studio, go to File > Project Structure. Then select the "project" tab on the left. Your Gradle version will be displayed here.

Which Gradle version is compatible with JDK 17?

Support for Java 17 As of Gradle 7.3, both running Gradle itself and building JVM projects with Java 17 is fully supported.

Does Gradle 7 work with java8?

Compiling and testing Java 6/7Gradle can only run on Java version 8 or higher. Gradle still supports compiling, testing, generating Javadoc and executing applications for Java 6 and Java 7. Java 5 and below are not supported.


1 Answers

I am not sure if this will help you but here is what fixed it for me:

Open up this file in your project:

<Project>/gradle/wrapper/gradle-wrapper.properties

Edit the distributionUrl line and set it too:

distributionUrl=https\://services.gradle.org/distributions/gradle-1.8-all.zip 

Rebuild your project.

Update: You might want to use gradle-2.8-all.zip now.

like image 128
Paito Avatar answered Sep 22 '22 05:09

Paito