今天执行一个老项目,代码没人动过,但是启动Android Studio后系统报错,报错信息为:Cause: unable to find valid certification path to requested target
下面是报错截图
网上找了好多解决方法,但是都不好用。
最后的解决方法是:
1.进入项目的build.gradle页面
2.将里面的jcenter() 注释,换成maven { url 'https://maven.aliyun.com/repository/jcenter' }
3.重新构建gradle就好了
原因分析:
报错的原因是jcenter这个库的网站无法访问了,导致Gradle校验时报错,进而整个程序无法正常运行。将此地址库修改成国内的镜像地址后,可以继续访问了,Gradle就可以继续校验,程序就可以正常运行了。
多写两句
这个目前不能用了maven { url 'https://maven.google.com/'},替换成下边的
maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}位置同上
如果还不行再试试下边
google()
jcenter()
替换成下边
maven{url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
maven{url 'http://maven.aliyun.com/nexus/content/repositories/google'}
分析:
可能是因为对Google的限制,只能通过国内的绕过去访问