此应用程序已由另一位开发人员组装。 构建应用程序时出现以下错误
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错误。
尝试在当前存储库旁边添加另一个
Maven
存储库,如下所示:
maven {
url 'https://jitpack.io'
}
// Add this
maven {
url 'https://maven.aliyun.com/repository/jcenter'
}
我希望这有帮助!