Android studio的 repositories配置多個url

lsc183發表於2017-02-08
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"
}
}
}

 

相關文章