解决 [Cause: unable to find valid certification path to requested target]问题

现象

  • 导入项目编译后一直报 Cause: unable to find valid certification path to requested target;截图如下:
    解决 [Cause: unable to find valid certification path to requested target]问题_第1张图片# 这个问题相当扰人,按照网上的资料各种修改都无法解决。其中大部分的解决方法都是去添加 jcenter的证书。网上参考的资料大都会找到这篇博客:

https://blog.csdn.net/frankcheng5143/article/details/52164939

按照所有流程都走一遍,重启Ide还是会报这种问题,做不到解决问题。

那到底怎样解决?

  • 尝试google,发现谷歌上的答案也相当模糊,StackOverflow上的解释用起来也没有效果。直到我找到了解决方法,具体参考了这篇博客

https://blog.csdn.net/qq_17827627/article/details/99404177

方案1和方案2基本属于上面第一篇博客的内容和延申。果然用起来都是无效的。

尝试用第3种方法.

方法:把jcenter() 替换为如下:

  maven {
        url "http://jcenter.bintray.com"
    }
  • 编译一波。问题解决了!

你可能感兴趣的:(Android,Kotlin,Gradle)