其他分享
首页 > 其他分享> > 解决Android Studio 无法通过gradle 下载https://dl.google.com/android/repository/addons_list-3.xml 解决办法

解决Android Studio 无法通过gradle 下载https://dl.google.com/android/repository/addons_list-3.xml 解决办法

作者:互联网

安卓gradle的时候,会弹出来这样报错,经常几个小时甚至一天就没有了。

Task :prepareKotlinBuildScriptModel UP-TO-DATE
IOException: https://dl.google.com/android/repository/addons_list-3.xml
java.net.ConnectException: Connection refused: connect
IOException: https://dl.google.com/android/repository/addons_list-2.xml
java.net.ConnectException: Connection refused: connect
IOException: https://dl.google.com/android/repository/addons_list-1.xml
java.net.ConnectException: Connection refused: connect
Failed to download any source lists!

笔者几乎把所有博客都翻了一遍,找到如下解决办法。
1.防火墙问题,关闭防火墙
2.Android SDK Manager 使用http 而不是https (这类大约是13年的,可能适用于老版本的AS)
3.借鉴这篇博客的思路

真.解决办法
1.设置 HTTP Proxy ,将其设置为No proxy
在这里插入图片描述
2.找到C盘用户文档的 .gradle文件夹的gradle.properties
在这里插入图片描述
3.打开并删掉代理配置(带有“proxy”的端口或ip地址配置)
在这里插入图片描述

标签:xml,dl,google,repository,list,https,android
来源: https://www.cnblogs.com/Shaojunping/p/16120737.html