ios 更改动画颜色后出现Lottie动画错误

vohkndzv  于 2022-12-27  发布在  iOS
关注(0)|答案(1)|浏览(315)

异常:原因:com.airbnb.lottie.parser.moshi.JsonDataException:路径$. layers [3]. shape [0]. it [1]. c. k [3]处应为双精度浮点数,但实际为END_ARRAY
描述错误:正常动画正在工作,但在https://editor.lottiefiles.com/更改动画颜色后,它崩溃
洛蒂的版本:3.4.1

implementation "com.airbnb.android:lottie:3.4.1"

Android版本:安卓12
我认为它的问题与动画我选择,所以我尝试另一个动画,但它仍然崩溃后,我改变了动画的颜色。战利品像洛蒂有错误的编辑器(https://editor.lottiefiles.com/

6ojccjat

6ojccjat1#

您可以将lootie库提升到:

implementation "com.airbnb.android:lottie:3.5.0"

我用你的Lootie文件夹做了测试,它起作用了。

<com.airbnb.lottie.LottieAnimationView
    android:id="@+id/animation_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:lottie_autoPlay="true"
    app:lottie_loop="true"
    app:lottie_rawRes="@raw/test" />

相关问题