Gradle 调试构建由于无法获取依赖项而突然失败

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

直到前天,一切都运转良好。从昨天晚上开始,在我清除了 gradle 和 android studio 缓存后,由于 gradle 突出显示的以下问题,我无法构建我的应用程序:

> FAILURE: Build completed with 9 failures. 1: Task failed with an
> exception.
> > Could not find com.linkedin.dexmaker:dexmaker-mockito:2.25.0. Searched in the following locations:
> - https://repo.maven.apache.org/maven2/com/linkedin/dexmaker/dexmaker-mockito/2.25.0/dexmaker-mockito-2.25.0.pom
>        - https://dl.google.com/dl/android/maven2/com/linkedin/dexmaker/dexmaker-mockito/2.25.0/dexmaker-mockito-2.25.0.pom
>        - https://jitpack.io/com/linkedin/dexmaker/dexmaker-mockito/2.25.0/dexmaker-mockito-2.25.0.pom
>        - https://clojars.org/repo/com/linkedin/dexmaker/dexmaker-mockito/2.25.0/dexmaker-mockito-2.25.0.pom
>        - https://oss.sonatype.org/content/repositories/ksoap2-android-releases/com/linkedin/dexmaker/dexmaker-mockito/2.25.0/dexmaker-mockito-2.25.0.pom
>        - https://maven.google.com/com/linkedin/dexmaker/dexmaker-mockito/2.25.0/dexmaker-mockito-2.25.0.pom

单击这些链接后,没有一个打开。这是仓库的合法链接

构建输出:

enter image description here

同样,对于很多依赖项,它也会失败。我无法确定是否是因为 maven 已关闭或 jitpack 已关闭。这影响了我的开发时间,因为由于这些故障我无法提供调试/发布版本。我最初认为这可能与我的网络连接有关,因此切换到移动热点并尝试,但结果是相同的。还有其他人遇到过这种情况吗?

使用的工具: Android Studio Koala 在 gradle 7.5 上运行

android maven gradle jitpack
1个回答
0
投票
经过几天的尝试找出答案,所有这些混乱的原因是因为我在项目中使用的一些库在 jitpack 或 maven 中不再可用或不再受支持。所以我必须检查删除它们是否有任何影响。我能够永久删除一些库,而我必须找到其他库的 jar / aar 文件并将它们放入我的项目中。然后我就能够成功构建并运行了。

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