且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

无法解决android studio中的所有依赖项

更新时间:2022-12-12 22:23:11

I think that you are missing the Google maven repo.

repositories {
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}

You have the full document here.