作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近我将 glide
从 4.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
如您所见,它使用此链接下载此依赖项:
但未找到!
但如果您将 .jar
更改为 .aar
,它就可以下载了。
如何在不升级其他东西的情况下强制使用aar
版本?
最佳答案
如果您只想下载 aar Artifact 而忽略传递依赖项,请使用 @aar
符号。
implementation "androidx.vectordrawable:vectordrawable-animated:1.0.0@aar"
关于android - 如何在gradle中强制下载aar版本的依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57789356/
我是一名优秀的程序员,十分优秀!