Android studio的 repositories配置多个url

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'

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

allprojects {
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
maven {
url "https://raw.githubusercontent.com/Pgyer/mvn_repo_pgyer/master"
}
}
}


原文地址:https://www.cnblogs.com/lsc183/p/6376610.html