AndroidStudio新建工程gradle編譯報(bào)Connect to repo.maven.apache.org:443問題

Android studio新版本創(chuàng)建項(xiàng)目后項(xiàng)目的build.gradle配置發(fā)生了改變,allproject配置移動(dòng)到settings.gradle中,用dependencyResolutionManagement替代,如下:

舊版本build.gradle:

...
allprojects {
    repositories {
        mavenCentral()
        google()
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
        maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
        maven { url "https://jitpack.io" }
        maven {url "http://maven.aliyun.com/nexus/content/repositories/releases"}
    }
}
...

新版本刪除了allprojects項(xiàng),在settings.gradle中新增如下:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
    }
}

工程新建完成后,自動(dòng)運(yùn)行會(huì)發(fā)現(xiàn)報(bào)如下錯(cuò)誤:


image.png
A problem occurred configuring root project 'android-demo'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not resolve org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20.
     Required by:
         project :
      > Could not resolve org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20.
         > Could not get resource 'https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.5.20/kotlin-gradle-plugin-1.5.20.pom'.
            > Could not HEAD 'https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.5.20/kotlin-gradle-plugin-1.5.20.pom'.
               > Connect to repo.maven.apache.org:443 [repo.maven.apache.org/127.0.0.1] failed: Connection refused: connect

* Try:
Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Exception is:

解決方案:
在主工程的build.gradle,添加如下:

buildscript {
    repositories {
//        google()
//        mavenCentral()

        maven { url 'https://plugins.gradle.org/m2/' } //復(fù)制這行
        maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' } //復(fù)制這行
        maven { url 'https://maven.aliyun.com/nexus/content/groups/public' } //復(fù)制這行
        maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'} //復(fù)制這行
    }
    ......
}

settings.gradle中添加如下內(nèi)容:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
//        google()
//        mavenCentral()
//        jcenter() // Warning: this repository is going to shut down soon
        maven { url 'https://plugins.gradle.org/m2/' } //復(fù)制這行
        maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' } //復(fù)制這行
        maven { url 'https://maven.aliyun.com/nexus/content/groups/public' } //復(fù)制這行
        maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'} //復(fù)制這行
    }
}
.....
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容