且构网

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

找不到 com.android.support:support-annotations:26.1.0

更新时间:2021-09-23 21:36:27

我自己回答问题:

maven { url 'https://maven.google.com' } 添加到:

allprojects {
    repositories {
        ...
        maven { url 'https://maven.google.com' }//this line is added
        mavenCentral()
        jcenter()
    }
}

对我有用,因为我的 gradle 版本是 3.x.我认为@shizhen 的答案也是正确的,但gradle 版本应该更改为4.x+.

worked for me because my gradle version was 3.x. I think the answer of @shizhen is also correct but the gradle version should be changed to 4.x+.

更多信息参考google() 和 maven { url 'https://maven.google.com' }