Received close_notify during handshake 错误解决

1、翻译过来的意思是 :握手时收到关闭通知。如图:


image.png

因为Android studio 在编译工程的build.gradle时 ,Jcenter里面的数据无法下载,(注:我的报这个错误可能是公司对访问的网络有权限,所以无法访问jcenter的数据)

解决:打开工程的build.gradle文件 ,把buildscript和allprojects中的Jcenter 替换成阿里云的就可以了。如图:


image.png
 maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
 maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}

然后 在Sync Now 一下就行了

你可能感兴趣的:(Received close_notify during handshake 错误解决)