找不到(包名称)。在以下位置进行了搜索:

Ame*_*eed 7 android gradle android-gradle-plugin gradle-plugin

当我尝试构建 Android 项目时,我遇到了这个问题:`

1: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
   > Could not find com.github.corouteam:GlideToVectorYou:v2.0.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/com/github/corouteam/GlideToVectorYou/v2.0.0/GlideToVectorYou-v2.0.0.pom
       - https://jcenter.bintray.com/com/github/corouteam/GlideToVectorYou/v2.0.0/GlideToVectorYou-v2.0.0.pom
       - https://jitpack.io/com/github/corouteam/GlideToVectorYou/v2.0.0/GlideToVectorYou-v2.0.0.pom
     Required by:
         project :app
Run Code Online (Sandbox Code Playgroud)

`

错误信息

如何通过下载上面的包来解决这个问题?

以前,它运行良好。但是,当我尝试将版本号降级到 1.2.0 时。运行良好。因此,2.0.0 版本似乎存在此问题。

Jav*_*lon 15

工件主机已更改为https://jitpack.io/#2coffees1team/GlideToVectorYou. 代替

com.github.corouteam:GlideToVectorYou:v2.0.0
Run Code Online (Sandbox Code Playgroud)

com.github.2coffees1team:GlideToVectorYou:v2.0.0
Run Code Online (Sandbox Code Playgroud)

学分: https: //github.com/corouteam/GlideToVectorYou/issues/18#issuecomment-1324610503

  • 感谢您的修复。GitHub 上的这一令人讨厌的更改令人困惑并破坏了我们的构建。 (2认同)