最佳答案
在 build.gradle 文件中,google ()和 maven { url‘ https://maven.google.com’}之间有什么区别吗? 如果有,是什么?
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
// OR
google()
}
}