Android Studio Gradle Sync同步慢问题

时间:2025-03-08 08:28:07

如何解决,发现阿里云有镜像,只需要添加相应的url地址就可以下载;打开项目build gradle文件。

buildscript {
    
    repositories {
        maven{ url '/nexus/content/groups/public/'}
        google()
        jcenter()
    }
    dependencies {
        classpath ':gradle:3.3.1'
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module  files
    }
}

allprojects {
    repositories {
        maven{ url '/nexus/content/groups/public/'}
        google()
        jcenter()
    }
}