How to set gradle home while importing existing project in Android studio. While trying to import I need to set up this path.
-
[Gradle location is incorrect error while importing ActionBarsherlock in Android Studio](https://stackoverflow.com/q/17623439/6521116) – LF00 Jul 11 '17 at 04:20
30 Answers
The gradle plugin (which contains a bundled version of gradle) should be already installed in where/you/installed/android-studio/plugins/gradle so you shouldn't need to manually download it. Depending on the version of Android Studio, that last directory may be where/you/installed/android-studio/gradle/gradle-x.y.z (x.y.z is the version, so check your filesystem for the exact path).
If you intend on doing gradle development outside Android Studio or want a different version, you can download it separately and point it at that path, but if you only want to get Android Studio working with the bundled version, this path should do it.

- 3,910
- 2
- 20
- 29
-
17
-
Is there any differences between them for the purposes of importing projects in Android Studio? – byteit101 May 03 '14 at 03:27
-
44I think it'd be better to use a real gradle dir. It's wherever you installed it plus "libexec" for me, e.g. `/usr/local/opt/gradle/` (from Homebrew on Mac) – AlexChaffee May 20 '14 at 18:32
-
2I just tried this with Android Studio 0.8.0 and it complained about using the plugin directory. I noticed though that gradle seems to be entirely located within the lib subdir, so I then instead pointed Android Studio to where/you/installed/android-studio/plugins/gradle/lib and it worked. – Tyrel Aug 22 '14 at 03:02
-
2Do not point it to the gradle-plugin but to the gradle-library which is in `.../android-studio/plugins/gradle/**lib**` – hotzen Sep 28 '14 at 14:19
-
3If you point to the gradle-lib as last person commented you will get an error from Android Studio that is not the right folder. – lagos Sep 30 '14 at 07:56
-
9the directory in this answer was different for me. I used /install/path/to/android-studio/gradle/gradle-2.2.1 – OKGimmeMoney Jan 03 '15 at 00:17
-
@AlexChaffee Could you share the whole path entry you have there. I'm also on OS X + Homebrew. What do you mean by 'plus "libexec"', precisely? IntelliJ IDEA 14.0.3, gradle 2.3 – akauppi Feb 17 '15 at 18:36
-
4
-
For Mac OS, you can use the following -
/usr/local/opt/gradle/libexec/
or more generically -path/to/gradle/libexec/
- this is recommended. (the first path is what's achieved after installing gradle via Homebrew)/path/to/android/studio/plugins/gradle
- I don't recommend this because this version of Gradle might be out of date, and Android Studio itself might say it's incompatible.

- 6,546
- 3
- 39
- 46
-
4Thanks, /usr/local/Cellar/gradle/2.3/libexec/ worked for me. + you might add that your reply has to do with OS X + Homebrew. – akauppi Feb 17 '15 at 18:41
-
say me: "graddle libexe is not supported, would you like to use graddle wrapper to update automatically ?" i clicked "yes" and alles was ok, it was strange because ; "brew info gradle " give this folder "/usr/local/Cellar/gradle/3.1" but Android Studio does not recognise gradle there – stackdave Jul 03 '17 at 09:41
You should be able to find it in C:\Program Files\Android\Android Studio\Gradle\Gradle 2.2.1
. This is running Windows 7 64-Bit. Android Studio 1.0.2.
OSX (Less han two minutes)
- Open terminal
- Check if Gradle installed
gradle --version
, if so, goto step 4 - If not
brew install gradle
and Goto step 2 - Copy
/usr/local/opt/gradle/libexec/
- Paste it in Import Project Window in Android Studio > Gradle Home
- Important, Celebrate!

- 591
- 4
- 7
-
1Excellent. The key info for me here was that you need to point it to [...]/libexec – David Oct 31 '17 at 04:21
-
-
Of course things have changed, so for me I had to run "brew info gradle" to get the updated location. – DavidP Jul 05 '23 at 04:22
- Download Gradle http://www.gradle.org/downloads
- Install
- Set Gradle home to the install directory

- 854
- 6
- 12
-
15
-
@htafoya how to know which operating system and installation type you use? "Installing manually" should be the easiest on all systems. The "install" directory is the directory where you extract to. – The incredible Jan Jun 19 '19 at 13:00
-
@htafoya you can follow the official per-OS Gradle instructions found here https://gradle.org/install/#manually – user3118604 Jun 20 '19 at 07:58
On Linux run: whereis gradle
.
For me it was /usr/lib/gradle/1.10
.

- 48,120
- 14
- 91
- 142

- 379
- 5
- 7
-
A better option will be to use /usr/lib/gradle/default no to depend on specific version – Calin Aug 27 '14 at 11:24
I ran into same problem. I selected location C:\Program Files (x86)\Android\android-studio\plugins\gradle as Gradle Home

- 2,366
- 2
- 28
- 40
In Ubuntu 14.04 after $ sudo apt-get install gradle
I've got
$ whereis gradle
gradle: /usr/bin/gradle /usr/bin/X11/gradle /usr/share/gradle /usr/share/man/man1/gradle.1.gz
The path to Gradle was /usr/share/gradle

- 1,590
- 13
- 32
Download Gradle as described above, but make sure you download version 1.9 and not the current release (1.11). I just had the same problem and downloaded the current release only to have Android Studio tell me it wasn't supported.

- 43
- 6
-
Gradle plugin 0.9.0 and 0.10.0 both support Android Studio http://tools.android.com/tech-docs/new-build-system – vharron May 03 '14 at 03:40
On Arch Linux I could not find it, so I added:
echo $APP_HOME
to /usr/bin/grade (found over which gradle
)
The Install dir for me was /usr/share/java/gradle/

- 372
- 3
- 14
For migrating from eclipse to android studio
(Do not need to specify the Gradle home.)
- Locate the project you exported from Eclipse, expand it, select the build.gradle file and click OK.
- In the following dialog, leave Use gradle wrapper selected and click OK.
Try this for windows users
http://blog.blundell-apps.com/setting-up-android-studio-gradle-windows-7/

- 12,332
- 10
- 44
- 62
-
2on a mac, this didnt work for me...wouldnt allow me to select the build.gradle file for my project – Tim Boland Sep 13 '14 at 21:23
I tried byteit101's solution but whether I chose android-studio-path/plugins/gradle
or android-studio-path/plugins/gradle/lib
the IDE said it isn't correct.
Then I changed the gradle home to android-studio-path/gradle/gradle-x.x.x
and it works.
Mac OSX / Linux
Step 1: Open terminal :)
Step 2: Open .bash_profile in vim to edit:
> vi ~/.bash_profile
Step 3: Add line:
> export GRADLE_HOME=/usr/local/opt/gradle
(for me it was this location, it can be different for u)
Step 4: Add line:
> export PATH="$PATH:$GRADLE_HOME/bin"
(to export bin directory of gradle)
Step 5: Verify by reopening the terminal or new tab, and check by echoing:
> echo $GRADLE_HOME

- 2,091
- 1
- 28
- 31
On Linux Mint 17 it was
/usr/share/gradle
for me

- 1,552
- 2
- 22
- 20
-
Also works on fedora 22 if gradle has been installed using dnf – Friedrich Große Nov 19 '15 at 09:18
If you are on a Windows machine, go to the directory:
C:\Program Files\Android\Android Studio\gradle\
Click the gradle-4.4 folder from Android Studio\File\Settings, and then click the Apply button.

- 27,532
- 16
- 147
- 165

- 21
- 4
This is my solution on AndroidStudio/Idea for Mac
$ env | grep GRADLE
GRADLE_HOME=/usr/local/Cellar/gradle/2.6
GRADLE_USER_HOME=/Users/leon/.gradle

- 944
- 6
- 22
I used umake to install android studio. For me the path was
/home/user/.local/share/umake/android/android-studio/gradle/gradle-2.14.1

- 327
- 2
- 8
I had to use this
"C:\Program Files\Android\Android Studio\gradle\gradle-4.1"
Change the version if you have a different one.

- 3,237
- 1
- 17
- 17
Don't need to download or specify anything...
Just go to the install Android Studio plugins Path and search for any file like gradle-wrapper-x.xx.jar (x.xx = version number). Copy it to a subfolder of your project root folder named : gradle.
Example : - file found gradle-wrapper-1.12.jar in plugins folder of Android Studio Install's path - my project was on D:\android_repo\myProject - created a folder into D:\android_repo\myProject\gradle - copy gradle-wrapper-1.12.jar to this folder D:\android_repo\myProject\gradle - import again my project and no more question about gradle.

- 13,492
- 1
- 31
- 55

- 1
I've stumble across this question, trying to build an Ionic + Cordova app using Gradle from Android Studio installation, rather that installing Gradle separately.
On Centos, the Gradle binary was here: /home/YOURUSERNAME/.gradle/wrapper/dists/gradle-VERSION-all/CUSTOM_HASH/gradle-VERSION/bin
So, I've added export PATH=/home/maxim/.gradle/wrapper/dists/gradle-4.1-all/bzyivzo6n839fup2jbap0tjew/gradle-4.1/bin:$PATH
to my ~/.bashrc
and ionic cordova run android
command worked just fine.

- 3,856
- 2
- 22
- 37
If you are on windows machine, go to the directory C:\Program Files\Android\Android Studio\gradle\ and click the gradle folder and apply it on

- 817
- 1
- 10
- 19
For Ubuntu default version is /usr/lib/gradle/default
.
In case of update, you don't need to reassign link in idea/studio.

- 614
- 6
- 13
For OSX, if going to Finder, navigate to this category: /usr/local/opt/ if you do not see gradle folder, install your grandle version manually:
https://services.gradle.org/distributions/gradle-5.4.1-all.zip
https://services.gradle.org/distributions/gradle-4.4.1-all.zip
If you are looking for specific Gradle version, simply change the version number from the zip links above, unzip and add that in the Gradle folder /usr/local/opt/gradle

- 1,220
- 14
- 18
If you are on a Windows machine, gradle home is located inside the installation folder of your Android Studio, usually at:
C:\Program Files\Android\Android Studio\gradle\gradle-5.1.1
Change the version if you have a different one.

- 1,272
- 1
- 15
- 22