标签:data- http 添加 abr https ack ott tps 报错
这样是会报错的
repositories {
mavenCentral()
maven {
url "http://maven.springframework.org/release"
url "http://maven.restlet.org"
}
}
正确的做法:
repositories {
maven { url "http://maven.springframework.org/release" }
maven { url "https://maven.fabric.io/public" }
}
在一个gradle 的maven property 里添加多个URL
标签:data- http 添加 abr https ack ott tps 报错
原文地址:https://www.cnblogs.com/xgjblog/p/9212641.html