Android Studio引用远程依赖包时下载不了jar包的解决方法

有一个工程使用了远程的jar包,报错如下

报错信息:

Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_ProcDebugApkCopy'.
   > Could not resolve com.android.support:appcompat-v7:27.0.2.
     Required by:
         project :app
      > Could not resolve com.android.support:appcompat-v7:27.0.2.
         > Could not get resource 'https://maven.google.com/com/android/support/appcompat-v7/27.0.2/appcompat-v7-27.0.2.pom'.
            > Could not GET 'https://maven.google.com/com/android/support/appcompat-v7/27.0.2/appcompat-v7-27.0.2.pom'.
               > Remote host closed connection during handshake
   > Could not resolve com.android.support:recyclerview-v7:26.0.0.
     Required by:
         project :app
      > Could not resolve com.android.support:recyclerview-v7:26.0.0.
         > Could not get resource 'https://maven.google.com/com/android/support/recyclerview-v7/26.0.0/recyclerview-v7-26.0.0.pom'.
            > Could not GET 'https://maven.google.com/com/android/support/recyclerview-v7/26.0.0/recyclerview-v7-26.0.0.pom'.
               > Remote host closed connection during handshake
   > Could not resolve com.android.support:support-v4:26.0.0.
     Required by:
         project :app
      > Could not resolve com.android.support:support-v4:26.0.0.
         > Could not get resource 'https://maven.google.com/com/android/support/support-v4/26.0.0/support-v4-26.0.0.pom'.
            > Could not GET 'https://maven.google.com/com/android/support/support-v4/26.0.0/support-v4-26.0.0.pom'.
               > Remote host closed connection during handshake
   > Could not resolve com.android.support:design:26.0.0.
     Required by:
         project :app
      > Could not resolve com.android.support:design:26.0.0.
         > Could not get resource 'https://maven.google.com/com/android/support/design/26.0.0/design-26.0.0.pom'.
            > Could not GET 'https://maven.google.com/com/android/support/design/26.0.0/design-26.0.0.pom'.
               > Remote host closed connection during handshake
   > Could not resolve com.android.support:appcompat-v7:27.0.2.
     Required by:
         project :app > com.kyleduo.switchbutton:library:1.4.6
      > Could not resolve com.android.support:appcompat-v7:27.0.2.
         > Could not get resource 'https://maven.google.com/com/android/support/appcompat-v7/27.0.2/appcompat-v7-27.0.2.pom'.
            > Could not GET 'https://maven.google.com/com/android/support/appcompat-v7/27.0.2/appcompat-v7-27.0.2.pom'.
               > Remote host closed connection during handshake
   > Could not resolve com.android.support:appcompat-v7:27.0.2.
     Required by:
         project :app > com.airbnb.android:lottie:2.5.0
      > Could not resolve com.android.support:appcompat-v7:27.0.2.
         > Could not get resource 'https://maven.google.com/com/android/support/appcompat-v7/27.0.2/appcompat-v7-27.0.2.pom'.
            > Could not GET 'https://maven.google.com/com/android/support/appcompat-v7/27.0.2/appcompat-v7-27.0.2.pom'.

               > Remote host closed connection during handshake



原来的build.gradle配置为:

allprojects {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
}

从错误信息上可以看出,访问https://maven.google.com/时Remote host closed connection during handshake(访问握手期间远程主机关闭连接),被墙了!

改下,用下面的配置:

allprojects {
    repositories {
        jcenter()
        mavenCentral()
        google()
    }
}

尽量避免使用静态的url地址,配置完clean后重新编译,没问题了


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章