Android build错误:Received close_n
2020-10-26 本文已影响0人
静水红阳
错误提示
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'}