These are .NET 10 bindings for the newest version of Lottie Android v6.7.1 (Oct 2025)
Install QotoQot.Bindings.Lottie.Android, from Nuget, add YourAnimation.json into Assets/ in your .NET Android project, and then in your code:
using Com.Airbnb.Lottie;
…
var animationView = new LottieAnimationView(Context);
animationView.SetAnimation("YourAnimation.json");
animationView.RepeatCount = -1; // loop
animationView.PlayAnimation();
// some LayoutParams here
AddView(animationView);- .NET 10.0 or later (for .NET 9 use v1.0 of this package)
- Android API 21 (Android 5.0) or later
This package includes bindings for:
- Lottie Android v6.7.1
- AndroidX AppCompat
- AndroidX Core
- OkIO (transitive dependency)
Get the sources from Github or the package from Nuget.