Android Studio: Gradle sync failed: Connection timed out: connect

后端 未结 15 2517
情话喂你
情话喂你 2020-12-06 04:28

My Android Studio was working fine till morning, but since tonight I get error saying \"Gradle sync failed: Connection timed out: connect. If you are behind an HTTP proxy, p

15条回答
  •  失恋的感觉
    2020-12-06 05:14

    I copied a project that was created else where. After removing these proxy credentials:

    systemProp.http.proxyPassword=your_password
    
    systemProp.http.proxyHost=host_Ip_address
    
    systemProp.http.proxyUser=your_username
    
    systemProp.http.proxyPort=port_number
    

    in the gradle.properties, it worked like a charm.

提交回复
热议问题