cani1see
cani1see

Reputation: 375

Android Studio download gradle takes forever

Everytime an imported project requires a specific version of gradle I don't have, it starts to sync. At this time, I close Android Studio, connect to vpn, and reopen Android Studio to sync gradle; however, sync never ends. Then I go to .gradle/wrapper/dists/gradle-xxx-all and nothing is downloaded (zip.part 0Kb). When I connect to vpn I can access gradle.org and download manually. Is this a bug with Android Studio or gradle?

There are many similar questions and most are solved by manually downloading the zip package. None solve the problem completely, though.

Upvotes: 6

Views: 6212

Answers (1)

pRaNaY
pRaNaY

Reputation: 25312

Follow below step to set automatically gradle sync in your android studio.

File -> Settings -> Build,Execution,Deployment ->Build tools -> gradle -> check Use Default gradle wrapper(recommended) radiobutton.

Also follow below step to restart your android studio for invalid cache restart.

File > Invalidate Caches/Restart (you can also manually remove the cache at ~/Library/Caches/{yourIDEName} and restart the IDE)

Then save settings and rebuild your project.

Edit: See Android 1.5 Gradle Sync never completes to get more idea.

I hope its helps you.

Upvotes: 1

Related Questions