Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle build hangs after update to Android Studio 1.3

I've just updated to Android Studio 1.3, opened an existing project I was working on, tried to run it. Gradle just gets stuck at the "Resolve dependencies':app_debugCompile'", I tried to wait, I waited for over an hour and nothing happened.

How can I solve it to get my app running?

like image 755
Basil Avatar asked Jun 03 '15 10:06

Basil


1 Answers

If you are using proxy, it seems https proxy server setting is not correctly done in Android studio 1.3. You can set https proxy server manually in gradle.properties,

systemProp.https.proxyHost=proxy.server.address
systemProp.https.proxyPort=8080

see Gradle Sync fails in Android studio 1.3 and gradle behind proxy in Android Studio 1.3.

like image 97
corochann Avatar answered Oct 07 '22 07:10

corochann