Open In App

How to Update Gradle in Android Studio?

Improve
Improve
Like Article
Like
Save
Share
Report

The Android Studio build system is based on Gradle, and the Android Gradle plugin adds several features that are specific to building Android apps. Although the Android plugin is typically updated in lock-step with Android Studio, the plugin (and the rest of the Gradle system) can run independent of Android Studio and be updated separately. For the best performance, you should use the latest possible version of both Gradle and the plugin. When you update Android Studio, you may receive a prompt to automatically update the Android Gradle plugin to the latest available version. You can choose to accept the update or manually specify a version based on your project’s build requirements. In this article, we are going to discuss both methods. So, let’s dive into the five different ways in which Gradle can be updated.

Different Ways To Update Gradle 

Method 1

Step 1: Open Android Studio and navigate to File → Settings

Then just click on Build, Execution, Deployment Tab Build → Tools → Gradle → Use default Gradle wrapper (recommended) option.

Step 2: Selecting desired Gradle version.

Go to File → Project Structure

Then click on the Project option.

then choose the latest version of Gradle. After that click on Ok. Latest stable versions you can use with Android Studio 4.1.2 (March 2021):

Android Gradle Plugin version: 4.1.2

Gradle version: 6.5

Method 2

Open gradle-wrapper.properties(go to Gradle > wrapper > gradle-wrapper.properties and manually change the distributionUrl property in the file. 

Method 3

Grab latest version supported by Android Studio: http://www.gradle.org/downloads (Currently 1.9, 1.10 is NOT supported by AS yet)

Install: Unzip to anywhere like near where AS is installed: C:\Users[username]\gradle-1.9\

Then navigate to File -> Settings

Then click on Gradle -> Service directory path: (Change to folder you set above) -> Click ok. The status on the bottom should indicate it’s busy & the error should be fixed. Might have to restart.

Method 4

Step 1: Go to project-level build.gradle file

Step 2: You can manually, change version of gradle to latest, just type classpath ‘com.android.tools.build:gradle:x.x.x’ . Put the latest version in place of x.x.x inside dependencies as shown below.


Last Updated : 06 Apr, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads