将Lottie Library添加到Android Studio Project中给了我:“无法解析依赖性”

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

我正在尝试使用以下行将Lottie库添加到我的Android项目中:

implementation 'com.airbnb.android:lottie:2.5.0'

同步后显示此错误:

Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.airbnb.android:lottie:2.5.0.

Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve com.airbnb.android:lottie:2.5.0.

Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve com.airbnb.android:lottie:2.5.0.

Unable to resolve dependency for ':app@release/compileClasspath': Could not resolve com.airbnb.android:lottie:2.5.0.

我也试过添加其他Lottie版本,但仍然显示相同的错误。我正在使用Android Studio 3.2和Target SDK是28.请帮我解决这个问题。

android gradle android-gradle
3个回答
0
投票

普通的2.5版本似乎不存在(根据他们的Github repo

改用2.7:

implementation 'com.airbnb.android:lottie:2.7.0'

0
投票

当您丢失与特定实现相关性相关的文件或组件时,此(无法解决错误)只发生在确保在res文件夹中添加json文件... app - > res然后右键单击并重新创建--->文件夹 - > assets文件夹并粘贴它..


0
投票

使用3.0.0,你会很高兴。快乐的编码

dependencies {
  implementation 'com.airbnb.android:lottie:3.0.0'
}
© www.soinside.com 2019 - 2024. All rights reserved.