美文网首页
访问不了Connect to dl.google.com:443

访问不了Connect to dl.google.com:443

作者: xmb | 来源:发表于2021-11-29 11:14 被阅读0次

1、IP查询:https://tool.lu/ip/

image.png
2、Mac上的、etc/hosts中添加
120.253.255.161 dl.google.com

3、安卓项目下的build.gradle中的改为阿里云的仓库地址:
参考地址:https://developer.aliyun.com/mvn/guide

buildscript {
    repositories {
// 添加阿里云 maven 地址
        maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
        maven { url 'https://maven.aliyun.com/repository/central/' }
        maven { url 'https://maven.aliyun.com/repository/public/' }
        maven { url 'https://maven.aliyun.com/repository/google/' }
        google()
        jcenter()
    }
}
 
allprojects {
    repositories {
// 添加阿里云 maven 地址
        maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
        maven { url 'https://maven.aliyun.com/repository/central/' }
        maven { url 'https://maven.aliyun.com/repository/public/' }
        maven { url 'https://maven.aliyun.com/repository/google/' }
        google()
        jcenter()
    }
}


相关文章

网友评论

      本文标题:访问不了Connect to dl.google.com:443

      本文链接:https://www.haomeiwen.com/subject/ofakxrtx.html