1. 程式人生 > >Error:Cause: peer not authenticated修復

Error:Cause: peer not authenticated修復



Error:Cause: peer not authenticated錯誤是由於使用jcenter倉庫時沒有指定Url需要將build.gradle程式碼

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.2'
}
}
改為:
buildscript {
    repositories {
        jcenter {
            url }
    }
    dependencies {
        classpath 'com.android.tools.build:
gradle:2.1.2'
}
}