美文网首页
Android Studio jcenter下载太慢

Android Studio jcenter下载太慢

作者: 沙夏cc | 来源:发表于2020-01-09 13:37 被阅读0次

今天新建一个Android 工程,jcenter下载实在太慢了,把build.gradle改一下,切换一下源。

// 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()


    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'

        // 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' }

    }

}

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

相关文章

网友评论

      本文标题:Android Studio jcenter下载太慢

      本文链接:https://www.haomeiwen.com/subject/eueyactx.html