如下图,各个仓库都是下载失败,网络是有oversea的访问的,不行,我给AndroidStudio网络代理到oversea也不能下载,就很奇怪,就像是AndroidStudio强行把网络访问给墙了

原来Settings.Gradle的配置如下,这几个代码仓库一般有oversea网络都是可以的
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }
        jcenter() // Warning: this repository is going to shut down soon
    }
}后面我没有办法只能再给它放到网络镜像去了,就像是AndroidStudio非得脱裤子放屁
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }
        jcenter() // Warning: this repository is going to shut down soon
        maven { url 'https://developer.huawei.com/repo' }
        maven { url 'https://maven.aliyun.com/repository/public' }
        maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
        maven { url 'https://maven.aliyun.com/repository/central' }
        maven { url 'https://maven.aliyun.com/repository/google' }
        maven { url 'https://repo1.maven.org/maven2' }
    }
}![[Algorithm][贪心][跳跃游戏][加油站][单调递增的数字][坏了的计算器]详细讲解](https://i-blog.csdnimg.cn/direct/53e8ddde95b74d5595fdafe30377c4e2.png)


![[数据集][目标检测]快递包裹检测数据集VOC+YOLO格式5382张1类别](https://i-blog.csdnimg.cn/direct/77c5fbebce094277940039df81401882.jpeg)















