ChatGPT解决这个技术问题 Extra ChatGPT

Android Studio Stuck at Gradle Download on create new project

I have installed the new Android Studio. Everything was working fine but when I try to create a new project it gets stuck at downloading Gradle.

Is there any way to install the Gradle required by Android Studio manually? Or any other method to solve this problem ?

https://i.stack.imgur.com/9hlLI.jpg

i just closed the studio and restarted the studio and it took few minutes and i was able to run a sample project. try closing and restarting may be it will help
have you tried to create a new project in it?
I have created new project now, but throwing some dependency error...in hello world project
I have same issue try to open gradle in browser to connect with site. check internet connection as well. I have tried these multiple time and that will work.
Gradle is working fine in browser and I am working with a high speed broadband connection so no issue with internet connection.

u
user3666197

It is not stuck, it will take some time normally 5-7 mins , it also depends upon internet connection, so wait for some time. It will take time only for first launch.

Update: Check the latest log file in your C:\Users\<User>\.gradle\daemon\x.y folder to see what it's downloading.


a download progress bar wouldn't hurt anyone
Indeterminate progress bars! :)
Or at least tell us that you are pulling in a big file.
actually Gradle's servers are always busy :meh
I suspect Google's developers use VERY high-end machines for development. Their CPUs are fast; networks are fast. The downloads would just take a split of second for them, so they don't care about the progress bar. See how much RAM Google Chrome is taking. (BTW, the download already taking more than half an hour for me.... (I am on a decently fast network though))
R
Reza

Yes, There is.

Create a new project and you should Shutdown The Android Studio Application.(Because it takes a long time for you). Goto C:\Users\{Logged in User}\.gradle folder There is a folder there that show you which version of gradle Android Studio requires (e.g. gradle-1.8-bin) Download this version from internet (e.g. gradle-1.8-bin.zip). Goto C:\Users\{Logged in User}\.gradle\wrapper\dists\gradle-1.8-bin There is a folder here that its name is like a GUID. You should just copy the zip file that you've already downloaded from internet into this folder. Execute Android Studio and create a new project.


For some reason when I was letting the android studio download the gradle-1.9-all.zip it was downloading it at hardly 10% of my internet speed. Manually downloading it was faster.
Not only gradle itself, it also take decades to download maven dependencies, average minutes for each KB size jar.
these dependencies should be packaged and managed internally for their updates just like AVD Manager by the android studio. It just makes android studio a more fragmented software now with all pieces here and there.
What I am finding is it is extremely difficult to download from gradle's server even if internet speed is good. I am working on more than 3 MBps download speed and still Gradle takes 40 mins to download 62 MB file. Servers are slow.!!
This works a charm. The crux of the matter is that gradle is not backward compatible and you need a specific version of gradle to build correctly. That is a problem.
R
Romin

I found the same issue happening on my laptop, despite waiting for quite a long time. This is what I did and it worked for me. Just force close the Android Studio and launch it again. This time, just open the existing project and let it take care of finishing up the process of building/downloading.

Another option that you could possibly try is that if you look into File --> Settings, there is an option for Gradle location. You could go to the Gradle download site, download a local distribution of Gradle and point the Gradle location to that local directory.


Yes after many restart and waiting for a long time its finally done. Thank you everyone
zip file. .11 version of gradle has several subfolders in it. To which of the folders I must point from the configuration? BIN only?
T
Terry Ray

If you're using OS X, and it continues to hang indefinitely, I'd recommend shutting down Android Studio (may have to force kill), then going to your ~/.gradle directory on the console. You'll see a wrapper/dists directory there and whatever version of gradle AS is trying to download. Check the timestamp of the download underneath the randomly named subdirectory. If you see that it is never changing, most likely your download was interrupted and AS wasn't able to restart it properly and will not unless you delete everything below the dists directory and start over.

So, with AS shutdown delete everything below ~/.gradle/wrapper/dists and then try again with a new project in AS. You can check the progress of the gradle download file (it will end in .part) to make sure that it's growing. Give it plenty of time as it IS a large file.

That's what finally worked for me.


Thank you. Please update the comment and ADS is so confusing. Use AS or Android Studio.
For most of the mac users this is the correct answer.
I airdropped the dists content from another system. Worked!
A
Abhigyan

Solution :

1). Delete the C:\Users\username.gradle folder

2). Download http://downloads.gradle.org/distributions/gradle-2.2.1-all.zip

3). Create a new project in android studio.

4). When this time it stucks at gradle building, Force close the android studio.

5) Now go to C:\Users\username.gradle\wrapper\dists\gradle-2.2.1-all\c64ydeuardnfqctvr1gm30w53 (the end directory name may be different)

6) Delete gradle-2.2.1-all.zip.lck and other files from this directory.

7) Paste the new downloaded gradle-2.2.1-all.zip here.

8) Run the android studio. :)


s
swapyonubuntu

Note : My answer seems quite long but its only 2 steps away if you want a correct way to configure with current project.

I found what was the actual problem. Actually, each android project comes with its own version of gradle wrapper.

have a look at dir

projectname/gradle/wrapper

here the properties file says the version of gradle that this project uses:

#Mon Sep 08 13:53:18 PDT 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-all.zip

So the issue is if you dont have that version of gradle then it will download that version for you. For instance have a look at this dir, where it downloaded gradle versions for me

/home/myusername/.gradle/wrapper/dists

looks like

https://i.stack.imgur.com/1EkrX.png

Here it will try to download version of gradle if you dont have. If you are comfortable with downloading other version of gradle then you can wait till it completes else

Workaround will be: 1. if project is on git clone it first.

goto your projectdir/gradle/wrapper

3.change version of distributionUrl to version that you already have : eg: for 2.2.1-all

url will be

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

4.copy gradle-wrapper.jar to your projectdir/gradle/wrapper from

.gradle/wrapper/dists/gradle-2.1.1-all/4ryh47z6pv2tj9n03uiw8pzc6/gradle-2.2.1/lib/gradle-wrapper.jar(dont forget to rename gradle-wrapper2.2.1.jar to gradle-wrapper.jar)

now import your project in studio.. and it works.


a
alexove

Yes, You can install Gradle manually before Android Studio, first install gradle in any location then add de gladle location to path variable (in Environment Variables Window).


r
race_carr

https://i.stack.imgur.com/mEHqU.png


M
Moamen Mostafa

I had fixed this problem by removing the .gradle folder

in windows: C:\Users{Logged in User}.gradle


I too faced the same issue and tried to by removing the .gradle folder and it works fine for me.
A
Abdul Saleem

For Windows Users

Use your Network Resource Monitor

https://i.stack.imgur.com/WcvKz.jpg

Open Task Manager [Ctrl+Shift+Esc]

Performance Tab

Open Resource Monitor (From the bottom)

First i decided to wait after reading answers here. But how long..? How to make sure it will finish.? They should have provided percentage of download, but they have not. So to know some kind of progress is going on, open this network resource monitor, it will show you some kind of download is going on for the Studio64.exe. IF not (if it shows 0B/Sec), then either network is not available or the application is not responding.


P
Panthro

What worked for me:

Create a dummy project, when it gets stuck on the Build screen, kill the studio process. Open the android studio and open the project, the projet will be broken Create a new project with the dummy project already opened it will create the project without problems Close the dummy project and have fun


S
Shadab K

Invalidate Caches and Restart

It worked for me.


G
Gibran E Castillo

The gradle included with Android Studio is located in /Applications/Android Studio.app/plugins/gradle/lib

To go into the Android Studio.app directory I did cd "Android Studio.app"

or you could just do cd /Applications/Android\ Studio.app/plugins/gradle/lib


v
veggiebenz

This was also taking along time for me (slow connection).

On Ubuntu (16.04), I was able to monitor the download progress by looking in:

~/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/ 

running ls -al from this directory showed the gradle-3.3-all.zip.part file continuing to grow.

The file ended up being 88M.

Please note the 55gk2rcmfc6p2dg9u9ohc3hw9 (and gradle version) may be different for you, please change your command accordingly.


O
Omar N Shamali

Open gradle-wrapper.properties Change From: distributionUrl=https/://services.gradle.org/distributions/gradle-4.4-all.zip To: distributionUrl=http://services.gradle.org/distributions/gradle-4.4-all.zip

Note: 1. I dont care about SSL disable for downloading the gradle, but others might be sensitive, so its up to you. 2. Notice the gradle version, in my case its 4.4.

https://i.stack.imgur.com/Xr8xM.png

https://i.stack.imgur.com/uzd1d.png

https://i.stack.imgur.com/ukjL3.png


V
Vihaan Verma

The Gradle popup window only shows intermittent progress and is not very helpful in understanding if the download is actually stuck or is very slow.

https://i.stack.imgur.com/NTN9x.png

It will help to build your app from the command line where you can actually get the real progress of downloading with

./gradlew build

https://i.stack.imgur.com/AXB2Y.png


G
Gibran E Castillo

Android Studio comes with Gradle, but it does not have the command line gradle functionality.


C
Cary Bondoc

Quick Fix: Just turn off your firewall, it seems that android studio wants to download something and because our firewall prevents it from downloading the file that it wants it becomes stuck.

Note: Turning your firewall off can lower your security, if you have time you can just allow android studio in your firewall. By doing this you can turn on your firewall while allowing android studio to download anything that it wants.