AndroidStudio终于解决Error:Cause: unable to find valid certification path to requested target

我的是2.3版本
一开始安装新建一个工程之后就出现了这个错误,在网上找了很多方法,有一个是把工程目录下的gradle文件里的jcenter()改成jcenter { url ‘http://jcenter.bintray.com’ }但是对我来说没有用,后面还看到一个把gradle路径改的更详细,改完之后还是没有用,最后搞了一晚上,第二天一早就忍不住去问老师最后终于搞好了
以下是我的总结经验
修改gradle文件
这是我工程目录下修改后的gradle文件
buildscript {
repositories {
jcenter()
maven { url “http://jcenter.bintray.com”}
}
dependencies {
classpath ‘com.android.tools.build:gradle:2.3.3’
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
jcenter{ url “http://jcenter.bintray.com/” }
maven { url “https://jitpack.io” }
}
}

点击invalidate caches/restart即可。
AndroidStudio终于解决Error:Cause: unable to find valid certification path to requested target_第1张图片

当然在这过程中也可能出现JUNIT报错我就是直接把那一行注释掉了

你可能感兴趣的:(AndroidStudio终于解决Error:Cause: unable to find valid certification path to requested target)