应用程序编译错误。找不到 com.jaeger.statusbarutil:library:1.5.1

问题描述 投票:0回答:1

此应用程序已由另一位开发人员组装。 构建应用程序时出现以下错误

Could not find com.jaeger.statusbarutil:library:1.5.1.
Required by:
   project :app
Search in build.gradle files

在 build.gradle 中连接一个依赖项

implementation 'com.jaeger.statusbarutil:library:1.5.1'

该项目使用以下存储库

repositories {
   google()
   mavenCentral()
   maven { url 'https://jitpack.io' }
}

我尝试向

maven { url 'https://jitpack.io ' }
添加授权令牌,我还尝试从github指定用户名和密码,但在这种情况下,我在尝试下载依赖项时收到403错误。

android build dependencies
1个回答
0
投票

尝试在当前存储库旁边添加另一个

Maven
存储库,如下所示:

maven {
    url 'https://jitpack.io'
}

// Add this
maven {
    url 'https://maven.aliyun.com/repository/jcenter'
}

我希望这有帮助!

© www.soinside.com 2019 - 2024. All rights reserved.