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

Posted 周文凯

tags:

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

不知道公司网最近怎么抽风了,加载依赖的速度奇慢无比,加入阿里云的镜像地址之后就顺畅了很多,其实也比较简单,这里记录下:

buildscript 
    ext.kotlin_version = '1.3.0'
    repositories 
        maven 
            url "http://maven.aliyun.com/nexus/content/groups/public/"
        
        google()
        jcenter()
    
    dependencies 
        classpath 'com.android.tools.build:gradle:3.2.1'
        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 
        maven 
            url "http://maven.aliyun.com/nexus/content/groups/public/"
        
        google()
        jcenter()
    

以上是关于Android Studio中添加阿里云Maven仓库镜像的主要内容,如果未能解决你的问题,请参考以下文章

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.

解决android studio引用远程仓库下载慢(JCenter下载慢)

解决Android Studio(2022版)gradle下载慢问题

Android Studio里Gradle Sync同步慢问题的解决方法