AndroidStudio3.6.3新版本遇到的坑

安装了as3.6.3新版本,遇到的坑,搞了一天半,终于解决。

问题:

1)org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException:
Could not resolve all artifacts for configuration ':compiler:classpath'.

2)Gradle Download klin-compiler eded-abl3.1J3ar.慢导致最后超时失败

3)unable to find valid certification path to requested target 

一个个解决

第一个问题参考了很多文章,最后应该是这个成功了,因为用了太多的方法,最后不知道怎么就好了

https://blog.csdn.net/ly_xiamu/article/details/105966576?utm_medium=distribute.pc_relevant.none-task-blog-baidujs-1

用了文中的方法二

1.添加了阿里的maven。 2.然后在gradle\wrapper\gradle-wrapper.properties里把distributionUrl换成你本地的。

maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
AndroidStudio3.6.3新版本遇到的坑_第1张图片

AndroidStudio3.6.3新版本遇到的坑_第2张图片

 

接下来出现了第二个问题

AndroidStudio3.6.3新版本遇到的坑_第3张图片

下载不下来并且超慢

这里我开了热点参考了https://blog.csdn.net/qq_40067488/article/details/104896201

按这个方法成功了

然后就出现了第三个问题

unable to find valid certification path to requested target

参考了这篇文章https://blog.csdn.net/weixin_43766753/article/details/102527228

用了方法二

AndroidStudio3.6.3新版本遇到的坑_第4张图片

清缓存,重启

然后AndroidStudio3.6.3新版本遇到的坑_第5张图片

最后终于跑起来了。。。

说的很轻松,但是解决了一天半才搞好,AS坑多啊。

你可能感兴趣的:(Android,Android,心得,Android,Studio,3.6.3)