安卓编译错误原因及处理方法

Gytha ·
更新时间:2024-09-21
· 858 次阅读

(1)打包apk时遇到"Received close_notify during handshake"

1.1(此方法仅解决我的一次问题,是否可靠仍待测试)可能是由build.grade文件下

` buildscript { repositories { jcenter() google() } }`

jcenter()相关文件不能下载引起的,切换为阿里的源之后即可,代码如下

buildscript { repositories { maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' } google() } }
作者:青山ing



编译错误 方法

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章