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 :)
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.
In Android Studio, go to File > Project Structure. Then select the "project" tab on the left. Your Gradle version will be displayed here.
Support for Java 17 As of Gradle 7.3, both running Gradle itself and building JVM projects with Java 17 is fully supported.
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.
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.
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