【转】[Android] 使用阿里云资源对新建 Android 项目提速
在项目下找到 settings.gradle 这个文件,添加以下内容:
pluginManagement { repositories { // 添加阿里云镜像 maven { url = uri("https://maven.aliyun.com/repository/public/") } google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { // 添加阿里云镜像 maven { url = uri("https://maven.aliyun.com/repository/public/") } google() mavenCentral() } } rootProject.name = "My Application" include ':app'
这时候再 Build 里右键 - Reload 就快多了: