欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2021-04-21 09:38:31|栏目:Android代码|点击:

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

// 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,如下图所示

在这里插入图片描述

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

在这里插入图片描述

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

上一篇:不依赖于Activity的Android全局悬浮窗的实现

栏    目:Android代码

下一篇:android嵌套滚动入门实践

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

本文地址:http://www.codeinn.net/misctech/105727.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有