• JCenter下载太慢, jcenter修改 https为http也许能帮助你


    今天导入一个工程到studio,一直卡在下载那块。

    看到下载地址是:
    https://jcenter.bintray.com/........
    https!!!!

    到浏览器下载,果然也下载不下来。。

    于是把https换成http,到浏览器下载,很快就能下载下来。。

    好的,怎么修改成http呢?我找了半天没找到。结果,尝试了一下,OK了!!!

    下面是build.gradle的内容:主要增加了jcenter(){url 'http://jcenter/bintray.com/'} 

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

    希望能帮到大家。

  • 相关阅读:
    <把时间当做朋友>读书笔记
    C语言-第12课
    C语言-第13课
    C语言-第11课
    python-第三课-字符串详解
    C语言-第10课
    C语言-第9课
    C语言-第8课
    C语言-第7课-enum和typedef分析
    C语言-第6课
  • 原文地址:https://www.cnblogs.com/kenshinobiy/p/9189956.html
Copyright © 2020-2023  润新知