AndroidStudio出现编译错误 Received close_notify during handshake解决方法

泄露秘密 提交于 2020-02-22 20:30:09

1 问题:

在第一次使用AndroidStudio新建工程时编译不通过,提示“Received close_notify during handshake”错误

2 原因:

jcenter里面的一些需要的包下载不了引起的

3 解决办法:修改build.gradle文件如下

修改build.gradle
buildscript{
    repositories{
        //jcenter() //把这里注释掉,换成阿里的源
        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
        maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        google()
 }
}
allprojects{
    repositories{
        //jcenter() //把这里注释掉,换成阿里的源
        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
        maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
 } 
}

4 重新 try agian 解决

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!