Blur not visible on Android 14.

Author: JanosMilleCreated Feb 2, 2026Updated Feb 2, 2026
LabelsRendering bug

Lottie is supported and developed on nights and weekends. Issues from Lottie sponsors will be prioritized.

If you don't use this template, your issue will be closed. Delete this text once completed.

Checklist

  1. My animation doesn't use any unsupported features.
  2. I know what part of my animation doesn't work.
  3. I have created a simplified version of my animation
  4. I have attached the AEP file (as a zip file so it can be attached) that only has the part of the animation that doesn't work.

Describe the bug Blur is not visible in Android 14 application. According to the unsupported features Gaussian Blur is supported from Android 4.1+

Note: I don't have an AEP file. The animation used was exported from Figma (As far as I know it was exported using a paid Lottie To Figma Playground tool)

What version of Lottie did you test this on? 6.7.1

What version of Android did you test this on? Android 14 (SDK 34) - Google Chromecast TV (HD)

Steps To Reproduce

  1. Created a simple view: layout_my_fragment.xml:
xml
<com.airbnb.lottie.LottieAnimationView
    android:id="@+id/lottie_animation_view"
    android:layout_width="100dp"
    android:layout_height="100dp"/>
  1. Load the lottie_with_blur.json file into the view:

MyFragment.kt:

kotlin
lottieAnimationView.setAnimation(R.raw.lottie_with_blur)
lottieAnimationView.repeatCount = LottieDrawable.INFINITE
lottieAnimationView.playAnimation() 
  1. Start the app
  2. Check the animation: Expected Result: Blurred animation. Actual Result: No blur on the animation. Check preview vs actual animation.png for the expected vs actual result.

Screenshots Image