标签:
构建时报错信息为
Could not resolve all dependencies for configuration ‘:compileClasspath‘.
原因应该是
repositories {
mavenLocal()
mavenCentral()
}
不能用,有人说是被墙了
改为
buildscript {
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
}
allprojects {
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
}
用
repositories {
jcenter()
}
也不行,好奇怪
标签:
原文地址:http://www.cnblogs.com/zheiyi/p/5775807.html