Android SSL peer shut down incorrectly编译错误

在使用android studio 编译项目时,出现SSL peer shut down incorrectly错误,或者引用的某些第三方库下载失败,大部分是被墙导致的。此时我们应该在根build.gradle中配置镜像仓库,一般选择阿里的仓库http://maven.aliyun.com/nexus/content/groups/public/如下所示:

buildscript {
    repositories {
        google()
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
    }
}

allprojects {
    repositories {
        google()
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
        jcenter()
    }
}

注意要将jcenter()放在最后,不然编译会很慢

你可能感兴趣的:(Android SSL peer shut down incorrectly编译错误)