本文介绍了Android Studio 1.3 中的代理背后的 gradle的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚将 Android Studio 升级到 2015 年 7 月 28 日构建的版本.代理设置停止工作.

I've just upgraded Android Studio to version built on 28 July 2015. And proxy settings stopped working.

我将它们配置在 AS 首选项和项目的 gradle.properties 中,如下所示:

I have them configured in AS preferences and in project's gradle.properties like this:

systemProp.http.proxyHost=some.proxy.adress.com
systemProp.http.proxyPort=3128

但 gradle 构建失败,建议我应该在 gradle 属性或 IDE 中配置代理.

And yet gradle build fails suggesting I should configure the proxy in either graddle properties or IDE.

错误:连接超时:连接.如果您在 HTTP 代理后面,请在 IDE 或 Gradle 中配置代理设置.

我还能尝试什么?

附言代理可以正常工作并从 Android Studio 首选项中正确提取,因为 git 按预期工作.

P.S. Proxy works and is picked-up properly from Android Studio preferences, as git works as expected.

推荐答案

也许你还需要配置https 设置

systemProp.https.proxyHost=www.somehost.org
systemProp.https.proxyPort=8080
systemProp.https.proxyUser=userid
systemProp.https.proxyPassword=password
systemProp.https.nonProxyHosts=*.nonproxyrepos.com|localhost

这篇关于Android Studio 1.3 中的代理背后的 gradle的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 08:42