如何在 Gradle 中强制下载 AAR 版本的依赖项



最近我glide4.8.0升级到4.9.0

如您所见,在最新版本中添加了一些额外的依赖项: https://search.maven.org/artifact/com.github.bumptech.glide/glide/4.9.0/aar

它补充说vectordrawable-animated 27.1.1

<dependency>
<groupId>com.android.support</groupId>
<artifactId>animated-vector-drawable</artifactId>
<version>27.1.1</version>
<scope>compile</scope>
</dependency>

我也在我的项目中使用了androidX,当我想同步gradle时,发生了此错误:

':app': Unable to build Kotlin project configuration
Details: org.gradle.internal.resolve.ArtifactNotFoundException: 
Could not find vectordrawable-animated.jar (androidx.vectordrawable:vectordrawable-animated:1.0.0).
Searched in the following locations:
https://maven.google.com/androidx/vectordrawable/vectordrawable-animated/1.0.0/vectordrawable-animated-1.0.0.jar

如您所见,它使用此链接下载此依赖项:

https://maven.google.com/androidx/vectordrawable/vectordrawable-animated/1.0.0/vectordrawable-animated-1.0.0.jar

但它没有找到!

但是,如果您将.jar更改为.aar则可以下载。

https://maven.google.com/androidx/vectordrawable/vectordrawable-animated/1.0.0/vectordrawable-animated-1.0.0.aar

如何在不升级其他东西的情况下强制使用aar版本?

如果您只想下载忽略传递依赖项的 aar 工件,请使用@aar表示法。

implementation "androidx.vectordrawable:vectordrawable-animated:1.0.0@aar"

相关内容

  • 没有找到相关文章

最新更新