我正在尝试使用以下行将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.请帮我解决这个问题。
当您丢失与特定实现相关性相关的文件或组件时,此(无法解决错误)只发生在确保在res文件夹中添加json文件... app - > res然后右键单击并重新创建--->文件夹 - > assets文件夹并粘贴它..
使用3.0.0,你会很高兴。快乐的编码
dependencies {
implementation 'com.airbnb.android:lottie:3.0.0'
}