Android Studio出现:Cause: unable to find valid certification path to requested target

从英文字面意思来看:找不到可用证书

出现原因:可能因为在迁移开发环境时出现的差错或连接单位或公司网络没有得到认证。

总而言之,就是Android Studio没有获得使用网络的权限,无法访问https://bintray.com/bintray/jcenter。

解决方案1:(如无效请看第2,3个方案)

1.建议重新链接网络,重新开机,重启AndroidStudio

(这种方法一般不能解决问题)

2.终极方案:从https://bintray.com/bintray/jcenter获取证书。

第一步,下载狐火浏览器。

第二步,打开https://bintray.com/bintray/jcenter

后续步骤请看图

Android Studio出现:Cause: unable to find valid certification path to requested target_第1张图片

Android Studio出现:Cause: unable to find valid certification path to requested target_第2张图片

Android Studio出现:Cause: unable to find valid certification path to requested target_第3张图片

Android Studio出现:Cause: unable to find valid certification path to requested target_第4张图片

Android Studio出现:Cause: unable to find valid certification path to requested target_第5张图片

Android Studio出现:Cause: unable to find valid certification path to requested target_第6张图片

 

2.解决方案2

把gradle文件里面的两个jcenter()改为

jcenter{
    url 'http://jcenter.bintray.com'
}

然后等待文件下载完成就可以了

3.解决方案3

把gradle文件里面的两个jcenter()改为

  maven {
        url "http://jcenter.bintray.com"
    }

 

Android Studio出现:Cause: unable to find valid certification path to requested target_第7张图片

 

你可能感兴趣的:(Android Studio出现:Cause: unable to find valid certification path to requested target)