服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - 解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题

解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题

2022-11-22 14:50M_Stockholm Android

这篇文章主要介绍了Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题及解决方法,需要的朋友可以参考下

1、首先修改根目录下的build.gradle成如下格式

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
  repositories {
    maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
    maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:3.6.1'
 
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}
allprojects {
  repositories {
//    google()
//    jcenter()
    maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
    maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
  }
}

2、然后点击sync project with gradle files,如下图所示

解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题

3、 如果再次报错请清理缓存并重启AS,方法如下图

解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题

4、(最重要的步骤)如果再次报错,请不厌其烦的且厚不要脸的多次点击这个小象(即重复第二步操作),正常情况下奇迹会发生的。(反正我是见证该奇迹了)

到此这篇关于解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题的文章就介绍到这了,更多相关Android studio 3.6.1 报错内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/M_Stockholm/article/details/104799648

延伸 · 阅读

精彩推荐