【Android】Cause: peer not authenticated

蔚落 2022-10-13 12:54 187阅读 0赞

Cause: peer not authenticated

问题

在这里插入图片描述

解决方案

出现这个是镜像的问题,用国内的快速镜像,来替换Jcenter

  1. buildscript {
  2. repositories {
  3. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  4. maven { url 'https://maven.aliyun.com/repository/google' }
  5. }
  6. }
  7. allprojects {
  8. repositories {
  9. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  10. maven { url 'https://maven.aliyun.com/repository/google' }
  11. }
  12. }

搞定!!!
在这里插入图片描述

发表评论

表情:
评论列表 (有 0 条评论,187人围观)

还没有评论,来说两句吧...

相关阅读