zoukankan      html  css  js  c++  java
  • 解决android studio引用远程仓库下载慢(JCenter下载慢)

    使用开源中国的maven库

    阿里云的(速度飞快):http://maven.aliyun.com/nexus/content/groups/public/

    修改项目根目录下面的build.gradle文件,将jcenter()库注释掉,添加阿里的maven库,同时保留Google的maven库地址即可。

    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    buildscript {
        repositories {
            google()
            //jcenter()
            maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}       
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.3.0'        
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    }
    
    allprojects {
        repositories {
            google()
         //jcenter()
            maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
        }
    }
    
    task clean(type: Delete) {
        delete rootProject.buildDir
    }

     另一个方法,在android studio的设置里面添加如下设置,下次就不用再改动这个文件了

  • 相关阅读:
    yii之behaviors
    查看windows系统信息
    idm chrome扩展被阻止解决办法
    音乐乐理基础
    bootstrap4
    七牛上传整合CI
    提升上传速度
    卡漫绘图
    指针的操作
    定语从句八个易混淆
  • 原文地址:https://www.cnblogs.com/tsts/p/11029182.html
Copyright © 2011-2022 走看看