其他分享
首页 > 其他分享> > gradle 修改国内仓库

gradle 修改国内仓库

作者:互联网

 

使用默认的国外仓库下载较慢,修改成国内仓库下载较快

 

MAC:

在 /Users/xxxxx/.gradle 目录下新建文件 init.gradle,内容如下:



allprojects {

    repositories {

        maven {

        //允许使用外部库

            allowInsecureProtocol = true

            //阿里云镜像

            url "http://maven.aliyun.com/nexus/content/groups/public"

        }

    }

}


windows ,在C:\Users\用户\.gradle ,操作和MAC一致

 

 

参考地址:https://www.csdn.net/tags/NtDacgysNzE0OC1ibG9n.html

标签:Users,仓库,gradle,maven,修改,MAC,下载
来源: https://www.cnblogs.com/whycai/p/16538653.html