解决Gradle DSL method not found: 'google()

干掉他

allprojects {
    repositories {
        google()
        jcenter()
}
}

google()连不上是罪魁祸首

改一下

allprojects {
    repositories {

        jcenter() { url 'http://jcenter.bintray.com/' }
    
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }

}

猜你喜欢

转载自blog.csdn.net/xiexiaotian11/article/details/92660060