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"
}
}
}

 


posted @ 2017-02-08 09:01  lsc183  阅读(7564)  评论(0编辑  收藏  举报