Android使用阿里镜像

Posted 无人i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android使用阿里镜像相关的知识,希望对你有一定的参考价值。

在学习room时项目一直在编译中,最后排查发现是依赖没有下载完导致。随后查询将依赖下载源改为阿里源,即可正常使用。

需要修改 build.gradle (project),改为以下内容:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        maven { url ‘http://maven.aliyun.com/nexus/content/groups/public/‘ }
        maven { url ‘http://maven.aliyun.com/nexus/content/repositories/jcenter‘ }
        google()
        //jcenter()
        
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:3.5.3‘
        
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

以上是关于Android使用阿里镜像的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio一直在download - 修改Gradle使用国内源 - 阿里云Maven镜像仓库地址 - 报错platform ‘android-30‘ not found.

Android Studio一直在download - 修改Gradle使用国内源 - 阿里云Maven镜像仓库地址 - 报错platform ‘android-30‘ not found.

Android Studio一直在download - 修改Gradle使用国内源 - 阿里云Maven镜像仓库地址 - 报错platform ‘android-30‘ not found.

Mac os 全局配置Android阿里云镜像

Android Studio中添加阿里云Maven仓库镜像

Termux镜像在阿里云镜像站首发上线