Received close_notify during handshake

1096 단어 Android
문제 의 존재 원인: 이것 은 안 드 로 이 드 컴 파일 오류 입 니 다. jcenter 안의 물건 을 다운로드 할 수 없습니다.
문제 해결: 프로젝트 의 build. gradle 파일 에서 jcenter () 를 아 리 의 원본 으로 바 꾸 고 구체 적 인 예제 코드 는 다음 과 같 습 니 다.수정 후 다시 Sync Project 를 하면 됩 니 다.
buildscript {
    ext.kotlin_version = '1.3.50'
    repositories {
        google()
        // jcenter()
        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
        maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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

좋은 웹페이지 즐겨찾기