错误提示
Received close_notify during handshake
原因分析
这是由于在jcenter()中的部分文件无法下载造成的错误,可以尝试使用阿里源取代jcenter()。
解决办法
打开项目的build.gradle文件,将里面的jcenter()
替换为如下内容
maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
网友评论