Android peer not authenticated

后端 未结 7 540
轻奢々
轻奢々 2020-12-14 23:03

Everything has been working, only today i started to get an error message, and i can\'t even \"Sync Project with Gradle files\" from Android Studio. The only thing i have ch

7条回答
  •  一整个雨季
    2020-12-14 23:09

    It seems a temporary issue with jcenter with an invalid SSL.

    You can switch to mavenCentral repo in your build.gradle file.

    repositories {
         mavenLocal()
         mavenCentral()
    }
    

提交回复
热议问题