gpt4 book ai didi

android - 如何在gradle中强制下载aar版本的依赖项

转载 作者:行者123 更新时间:2023-11-30 05:03:33 26 4
gpt4 key购买 nike

最近我将 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 Artifact 而忽略传递依赖项,请使用 @aar 符号。

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

关于android - 如何在gradle中强制下载aar版本的依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57789356/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com