1.情况
image.png2.解决办法
后面查到说是Jcenter() 和google()被墙了,需要在前面加上Maven()
具体解决如下:
buildscript {
repositories {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
google()
jcenter()
}
}
allprojects {
repositories {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
google()
jcenter()
}
}
通过添加上述maven(),程序运行成功
网友评论