解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题
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、(最重要的步骤)如果再次报错,请不厌其烦的且厚不要脸的多次点击这个小象(即重复第二步操作),正常情况下奇迹会发生的。(反正我是见证该奇迹了)
到此这篇关于解决Android studio 3.6.1 出现Cause: unable to find valid certification path to requested target 报错的问题的文章就介绍到这了,更多相关Android studio 3.6.1 报错内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
- AndroidStudio报错Emulator:PANIC:Cannot find AVD system path. Please define ANDROID_SDK_ROOT(解决方案)
- Android studio报错:The emulator process for AVD (xxx) was killed
- Android studio 切换flutterSDK之后报错及解决办法(推荐)
- Android Studio报错unable to access android sdk add-on list解决方案
- 解决Android Studio 出现“Cannot resolve symbol” 的问题
相关文章
举例讲解Android应用中SimpleAdapter简单适配器的使用
这篇文章主要介绍了Android应用中SimpleAdapter简单适配器的使用例子,SimpleAdapter经常在ListView被使用,需要的朋友可以参考下2016-04-04Android通过Webservice操作sqlserver数据库实例代码
这篇文章主要介绍了Android通过Webservice操作sqlserver数据库的相关知识,对webservice操作数据库相关知识感兴趣的朋友一起学习吧2016-01-01
最新评论