美文网首页
android studio更换阿里云镜像

android studio更换阿里云镜像

作者: 加勒比兔Z | 来源:发表于2020-04-03 09:27 被阅读0次
buildscript {
    
    repositories {
        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
        maven { url "https://jitpack.io" }
        google()
//        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
//        jcenter()
        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
        google()
    }
}

相关文章

网友评论

      本文标题:android studio更换阿里云镜像

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