我拥有我使用的代理的IP,但我似乎无法让Android工作室使用它。我收到以下错误:
错误:操作超时。如果你是HTTP代理的后面,请 在IDE或Gradle中配置代理设置。
我已成功ping通代理,尝试通过" Android Studio设置 - >偏好 - >服饰和行为 - >系统设置 - > HTTP代理",甚至尝试使用gradle文件中的以下代码:
defaultConfig {
systemProp.https.proxyHost="10.x.x.x"
systemProp.https.proxyPort=8080
systemProp.http.proxyHost="10.x.x.x"
systemProp.http.proxyPort=8080
}
我有什么遗漏才能完成这项工作吗?