├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── non-rendering-bug.md │ └── rendering-bug.md └── workflows │ ├── post_snapshot_comment.yml │ └── validate.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml └── kotlinc.xml ├── After Effects Samples ├── Benchmark.aep ├── DynamicGradient.aep ├── EmptyState.aep ├── HamburgerArrow.aep ├── Images.aep ├── LottieLogos.aep ├── Masks.aep ├── MatteTimeStretch.aep ├── Miter Limit.aep ├── Multiline.aep ├── PinJump.aep ├── PointText.aep ├── RGBMarker.aep ├── Skew.aep ├── Test │ ├── KeyPath.aep │ ├── LottieTests.aep │ ├── MatteMask.aep │ ├── Star.aep │ └── _Gif │ │ ├── Test_Fill.gif │ │ ├── Test_KeyframeTypes.gif │ │ ├── Test_Parenting.gif │ │ ├── Test_Precomps.gif │ │ ├── Test_ShapeTypes.gif │ │ ├── Test_SplitDimensions.gif │ │ ├── Test_Stroke.gif │ │ └── Test_TrackMattes.gif ├── Time Stretch Mask.aep ├── TrimPathsInsideAndOutsideGroup.aep ├── TwitterHeart.aep └── Walkthrough.aep ├── CHANGELOG.md ├── CHANGELOG_COMPOSE.md ├── CODE_OF_CONDUCT.md ├── DESIGNER_NOTES.md ├── LICENSE ├── README.md ├── RELEASE.md ├── app-benchmark ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── benchmark │ │ └── app │ │ └── BenchmarkActivity.kt │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── raw │ └── benchmark.json │ └── values │ └── strings.xml ├── baselineprofile ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── airbnb │ └── lottie │ └── baselineprofile │ ├── BaselineProfileGenerator.kt │ └── StartupBenchmarks.kt ├── benchmark ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── airbnb │ └── lottie │ └── sample │ └── compose │ └── benchmark │ ├── LottieBaselineBenchmark.kt │ └── LottieBaselineProfiles.kt ├── deploy_snapshot.sh ├── gifs ├── Community 2_3.gif ├── Duolingo.svg ├── Example1.gif ├── Example2.gif ├── Example3.gif ├── Example4.gif └── Sponsor.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── airbnb.svg ├── coinbase.svg ├── emerge.png ├── lottiefiles.svg ├── lottielab.png ├── stream.png └── tonal.svg ├── issue-repro-compose ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── issues │ │ └── compose │ │ └── ComposeIssueReproActivity.kt │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── raw │ └── heart.json │ └── values │ └── strings.xml ├── issue-repro ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── issues │ │ └── IssueReproActivity.kt │ └── res │ ├── layout │ └── issue_repro_activity.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── raw │ ├── heart.json │ └── intro.json │ └── values │ └── strings.xml ├── lint.xml ├── lottie-compose ├── api │ └── lottie-compose.api ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── baseline-prof.txt │ ├── generated │ │ └── baselineProfiles │ │ │ └── baseline-prof.txt │ └── java │ │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── compose │ │ ├── LottieAnimatable.kt │ │ ├── LottieAnimation.kt │ │ ├── LottieAnimationSizeNode.kt │ │ ├── LottieAnimationState.kt │ │ ├── LottieCancellationBehavior.kt │ │ ├── LottieClipSpec.kt │ │ ├── LottieCompositionResult.kt │ │ ├── LottieCompositionSpec.kt │ │ ├── LottieConstants.kt │ │ ├── LottieDynamicProperties.kt │ │ ├── LottiePainter.kt │ │ ├── LottieRetrySignal.kt │ │ ├── animateLottieCompositionAsState.kt │ │ └── rememberLottieComposition.kt │ └── test │ └── java │ └── com │ └── airbnb │ └── lottie │ └── compose │ ├── CompositionFixtures.kt │ ├── LottieAnimatableImplTest.kt │ ├── LottieClipSpecTest.kt │ ├── LottieCompositionResultImplTest.kt │ └── TestFrameClock.kt ├── lottie ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── AndroidManifest.xml │ ├── generated │ │ └── baselineProfiles │ │ │ └── baseline-prof.txt │ ├── java │ │ └── com │ │ │ └── airbnb │ │ │ └── lottie │ │ │ ├── AsyncUpdates.java │ │ │ ├── Cancellable.java │ │ │ ├── FontAssetDelegate.java │ │ │ ├── ImageAssetDelegate.java │ │ │ ├── L.java │ │ │ ├── Lottie.java │ │ │ ├── LottieAnimationView.java │ │ │ ├── LottieComposition.java │ │ │ ├── LottieCompositionFactory.java │ │ │ ├── LottieConfig.java │ │ │ ├── LottieDrawable.java │ │ │ ├── LottieImageAsset.java │ │ │ ├── LottieListener.java │ │ │ ├── LottieLogger.java │ │ │ ├── LottieOnCompositionLoadedListener.java │ │ │ ├── LottieProperty.java │ │ │ ├── LottieResult.java │ │ │ ├── LottieTask.java │ │ │ ├── LottieTaskIdleListener.java │ │ │ ├── OnCompositionLoadedListener.java │ │ │ ├── PerformanceTracker.java │ │ │ ├── RenderMode.java │ │ │ ├── SimpleColorFilter.java │ │ │ ├── TextDelegate.java │ │ │ ├── animation │ │ │ ├── LPaint.java │ │ │ ├── content │ │ │ │ ├── BaseStrokeContent.java │ │ │ │ ├── CompoundTrimPathContent.java │ │ │ │ ├── Content.java │ │ │ │ ├── ContentGroup.java │ │ │ │ ├── DrawingContent.java │ │ │ │ ├── EllipseContent.java │ │ │ │ ├── FillContent.java │ │ │ │ ├── GradientFillContent.java │ │ │ │ ├── GradientStrokeContent.java │ │ │ │ ├── GreedyContent.java │ │ │ │ ├── KeyPathElementContent.java │ │ │ │ ├── MergePathsContent.java │ │ │ │ ├── ModifierContent.java │ │ │ │ ├── PathContent.java │ │ │ │ ├── PolystarContent.java │ │ │ │ ├── RectangleContent.java │ │ │ │ ├── RepeaterContent.java │ │ │ │ ├── RoundedCornersContent.java │ │ │ │ ├── ShapeContent.java │ │ │ │ ├── ShapeModifierContent.java │ │ │ │ ├── StrokeContent.java │ │ │ │ ├── TrimPathContent.java │ │ │ │ └── package-info.java │ │ │ ├── keyframe │ │ │ │ ├── BaseKeyframeAnimation.java │ │ │ │ ├── ColorKeyframeAnimation.java │ │ │ │ ├── DropShadowKeyframeAnimation.java │ │ │ │ ├── FloatKeyframeAnimation.java │ │ │ │ ├── GradientColorKeyframeAnimation.java │ │ │ │ ├── IntegerKeyframeAnimation.java │ │ │ │ ├── KeyframeAnimation.java │ │ │ │ ├── MaskKeyframeAnimation.java │ │ │ │ ├── PathKeyframe.java │ │ │ │ ├── PathKeyframeAnimation.java │ │ │ │ ├── PointKeyframeAnimation.java │ │ │ │ ├── ScaleKeyframeAnimation.java │ │ │ │ ├── ShapeKeyframeAnimation.java │ │ │ │ ├── SplitDimensionPathKeyframeAnimation.java │ │ │ │ ├── TextKeyframeAnimation.java │ │ │ │ ├── TransformKeyframeAnimation.java │ │ │ │ ├── ValueCallbackKeyframeAnimation.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── manager │ │ │ ├── FontAssetManager.java │ │ │ ├── ImageAssetManager.java │ │ │ └── package-info.java │ │ │ ├── model │ │ │ ├── CubicCurveData.java │ │ │ ├── DocumentData.java │ │ │ ├── Font.java │ │ │ ├── FontCharacter.java │ │ │ ├── KeyPath.java │ │ │ ├── KeyPathElement.java │ │ │ ├── LottieCompositionCache.java │ │ │ ├── Marker.java │ │ │ ├── MutablePair.java │ │ │ ├── animatable │ │ │ │ ├── AnimatableColorValue.java │ │ │ │ ├── AnimatableFloatValue.java │ │ │ │ ├── AnimatableGradientColorValue.java │ │ │ │ ├── AnimatableIntegerValue.java │ │ │ │ ├── AnimatablePathValue.java │ │ │ │ ├── AnimatablePointValue.java │ │ │ │ ├── AnimatableScaleValue.java │ │ │ │ ├── AnimatableShapeValue.java │ │ │ │ ├── AnimatableSplitDimensionPathValue.java │ │ │ │ ├── AnimatableTextFrame.java │ │ │ │ ├── AnimatableTextProperties.java │ │ │ │ ├── AnimatableTransform.java │ │ │ │ ├── AnimatableValue.java │ │ │ │ ├── BaseAnimatableValue.java │ │ │ │ └── package-info.java │ │ │ ├── content │ │ │ │ ├── BlurEffect.java │ │ │ │ ├── CircleShape.java │ │ │ │ ├── ContentModel.java │ │ │ │ ├── GradientColor.java │ │ │ │ ├── GradientFill.java │ │ │ │ ├── GradientStroke.java │ │ │ │ ├── GradientType.java │ │ │ │ ├── LBlendMode.java │ │ │ │ ├── Mask.java │ │ │ │ ├── MergePaths.java │ │ │ │ ├── PolystarShape.java │ │ │ │ ├── RectangleShape.java │ │ │ │ ├── Repeater.java │ │ │ │ ├── RoundedCorners.java │ │ │ │ ├── ShapeData.java │ │ │ │ ├── ShapeFill.java │ │ │ │ ├── ShapeGroup.java │ │ │ │ ├── ShapePath.java │ │ │ │ ├── ShapeStroke.java │ │ │ │ ├── ShapeTrimPath.java │ │ │ │ └── package-info.java │ │ │ └── layer │ │ │ │ ├── BaseLayer.java │ │ │ │ ├── CompositionLayer.java │ │ │ │ ├── ImageLayer.java │ │ │ │ ├── Layer.java │ │ │ │ ├── NullLayer.java │ │ │ │ ├── ShapeLayer.java │ │ │ │ ├── SolidLayer.java │ │ │ │ ├── TextLayer.java │ │ │ │ └── package-info.java │ │ │ ├── network │ │ │ ├── DefaultLottieFetchResult.java │ │ │ ├── DefaultLottieNetworkFetcher.java │ │ │ ├── FileExtension.java │ │ │ ├── LottieFetchResult.java │ │ │ ├── LottieNetworkCacheProvider.java │ │ │ ├── LottieNetworkFetcher.java │ │ │ ├── NetworkCache.java │ │ │ └── NetworkFetcher.java │ │ │ ├── parser │ │ │ ├── AnimatablePathValueParser.java │ │ │ ├── AnimatableTextPropertiesParser.java │ │ │ ├── AnimatableTransformParser.java │ │ │ ├── AnimatableValueParser.java │ │ │ ├── BlurEffectParser.java │ │ │ ├── CircleShapeParser.java │ │ │ ├── ColorParser.java │ │ │ ├── ContentModelParser.java │ │ │ ├── DocumentDataParser.java │ │ │ ├── DropShadowEffect.java │ │ │ ├── DropShadowEffectParser.java │ │ │ ├── FloatParser.java │ │ │ ├── FontCharacterParser.java │ │ │ ├── FontParser.java │ │ │ ├── GradientColorParser.java │ │ │ ├── GradientFillParser.java │ │ │ ├── GradientStrokeParser.java │ │ │ ├── IntegerParser.java │ │ │ ├── JsonUtils.java │ │ │ ├── KeyframeParser.java │ │ │ ├── KeyframesParser.java │ │ │ ├── LayerParser.java │ │ │ ├── LottieCompositionMoshiParser.java │ │ │ ├── MaskParser.java │ │ │ ├── MergePathsParser.java │ │ │ ├── PathKeyframeParser.java │ │ │ ├── PathParser.java │ │ │ ├── PointFParser.java │ │ │ ├── PolystarShapeParser.java │ │ │ ├── RectangleShapeParser.java │ │ │ ├── RepeaterParser.java │ │ │ ├── RoundedCornersParser.java │ │ │ ├── ScaleXYParser.java │ │ │ ├── ShapeDataParser.java │ │ │ ├── ShapeFillParser.java │ │ │ ├── ShapeGroupParser.java │ │ │ ├── ShapePathParser.java │ │ │ ├── ShapeStrokeParser.java │ │ │ ├── ShapeTrimPathParser.java │ │ │ ├── ValueParser.java │ │ │ ├── moshi │ │ │ │ ├── JsonDataException.java │ │ │ │ ├── JsonEncodingException.java │ │ │ │ ├── JsonReader.java │ │ │ │ ├── JsonScope.java │ │ │ │ ├── JsonUtf8Reader.java │ │ │ │ ├── LinkedHashTreeMap.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── utils │ │ │ ├── BaseLottieAnimator.java │ │ │ ├── GammaEvaluator.java │ │ │ ├── LogcatLogger.java │ │ │ ├── Logger.java │ │ │ ├── LottieThreadFactory.java │ │ │ ├── LottieTrace.java │ │ │ ├── LottieValueAnimator.java │ │ │ ├── MeanCalculator.java │ │ │ ├── MiscUtils.java │ │ │ ├── Utils.java │ │ │ └── package-info.java │ │ │ └── value │ │ │ ├── Keyframe.java │ │ │ ├── LottieFrameInfo.java │ │ │ ├── LottieInterpolatedFloatValue.java │ │ │ ├── LottieInterpolatedIntegerValue.java │ │ │ ├── LottieInterpolatedPointValue.java │ │ │ ├── LottieInterpolatedValue.java │ │ │ ├── LottieRelativeFloatValueCallback.java │ │ │ ├── LottieRelativeIntegerValueCallback.java │ │ │ ├── LottieRelativePointValueCallback.java │ │ │ ├── LottieValueCallback.java │ │ │ ├── ScaleXY.java │ │ │ └── SimpleLottieValueCallback.java │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── ids.xml │ └── test │ ├── java │ └── com │ │ └── airbnb │ │ └── lottie │ │ ├── BaseTest.java │ │ ├── Fixtures.java │ │ ├── KeyPathTest.java │ │ ├── LottieCompositionFactoryTest.java │ │ ├── LottieCompositionTest.java │ │ ├── LottieDrawableTest.java │ │ ├── LottieInitializeTest.java │ │ ├── LottieTaskTest.java │ │ ├── LottieValueAnimatorUnitTest.java │ │ ├── MeanCalculatorTest.java │ │ ├── PerformanceTrackerTest.java │ │ ├── model │ │ ├── LottieCompositionCacheTest.java │ │ ├── MarkerTest.java │ │ ├── animatable │ │ │ └── AnimatableGradientColorValueTest.java │ │ └── content │ │ │ └── GradientColorTest.java │ │ ├── parser │ │ └── GradientColorParserTest.java │ │ └── utils │ │ ├── GammaEvaluatorTest.java │ │ └── LottieValueAnimatorTest.java │ └── resources │ └── test1.json ├── post_pr_comment.js ├── sample-compose ├── build.gradle └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── samples │ │ ├── InfiniteAnimationTest.kt │ │ └── WalkthroughAnimationTest.kt │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── AndroidWave.json │ ├── HamburgerArrow.json │ ├── Images │ │ ├── WeAccept │ │ │ └── img_0.png │ │ └── android.png │ ├── Lottie Logo 1.json │ ├── Lottie Logo 2.json │ └── fonts │ │ ├── Comic Neue.ttf │ │ └── Roboto.ttf │ ├── java │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── sample │ │ └── compose │ │ ├── ComposeActivity.kt │ │ ├── LottieComposeApplication.kt │ │ ├── Route.kt │ │ ├── api │ │ ├── AnimationDataV1.kt │ │ ├── AnimationDataV2.kt │ │ ├── AnimationsResponseV1.kt │ │ ├── AnimationsResponseV2.kt │ │ ├── ApiModule.kt │ │ └── LottieFilesApi.kt │ │ ├── composables │ │ ├── AnimationRow.kt │ │ ├── DebouncedCircularProgressIndicator.kt │ │ ├── Loader.kt │ │ └── Marquee.kt │ │ ├── dagger │ │ ├── ApplicationComponent.kt │ │ ├── AssistedViewModelFactory.kt │ │ ├── DaggerMavericksViewModelFactory.kt │ │ ├── MavericksModule.kt │ │ └── ViewModelKey.kt │ │ ├── examples │ │ ├── AnimatableExamplesPage.kt │ │ ├── BasicUsageExamplesPage.kt │ │ ├── CachingExamplesPage.kt │ │ ├── ContentScaleExamplesPage.kt │ │ ├── DynamicPropertiesExamplesPage.kt │ │ ├── ExampleCard.kt │ │ ├── ExamplesPage.kt │ │ ├── ExamplesPageScaffold.kt │ │ ├── ImagesExamplesPage.kt │ │ ├── NetworkExamplesPage.kt │ │ ├── TextExamplesPage.kt │ │ ├── TransitionsExamplesPage.kt │ │ └── ViewPagerExample.kt │ │ ├── lottiefiles │ │ ├── LottieFilesPage.kt │ │ ├── LottieFilesRecentsAndPopularPage.kt │ │ └── LottieFilesSearchPage.kt │ │ ├── player │ │ ├── PlayerPage.kt │ │ └── ToolbarChip.kt │ │ ├── preview │ │ └── PreviewPage.kt │ │ ├── showcase │ │ ├── ShowcasePage.kt │ │ └── ShowcaseViewModel.kt │ │ ├── ui │ │ ├── Color.kt │ │ ├── Shape.kt │ │ ├── Theme.kt │ │ └── Type.kt │ │ └── utils │ │ ├── BitmapUtils.kt │ │ ├── ComposeExtensions.kt │ │ └── NavigationExtensions.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_border.xml │ ├── ic_color.xml │ ├── ic_device.xml │ ├── ic_examples.xml │ ├── ic_file.xml │ ├── ic_launcher_background.xml │ ├── ic_layers.xml │ ├── ic_lottie_files.xml │ ├── ic_masks_and_mattes.xml │ ├── ic_network.xml │ ├── ic_qr_scan.xml │ ├── ic_showcase.xml │ ├── ic_speed.xml │ └── ic_storage.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── raw-night │ └── sun_moon.json │ ├── raw │ ├── bar.json │ ├── bar_1.json │ ├── bar_2.json │ ├── bar_3.json │ ├── gradient.json │ ├── heart.json │ ├── loading.json │ ├── name.json │ ├── sun_moon.json │ ├── walkthrough.json │ ├── we_accept.json │ └── we_accept_inline_image.json │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── sample ├── build.gradle ├── lint-baseline.xml ├── proguard-multidex-rules.pro ├── screenshots │ ├── 300x300 @2x.png │ ├── 300x300 @4x.png │ ├── 300x300 centerCrop @2x.png │ ├── 300x300 centerCrop.png │ ├── 300x300 centerInside @2x.png │ ├── 300x300 centerInside.png │ ├── 300x600 centerInside.png │ ├── 600x300 centerInside.png │ ├── 9squares-AlBoardman.png │ ├── CircleForward.png │ ├── CircleReversed.png │ ├── EmptyState.png │ ├── Frame 16 Red.png │ ├── Frame 17 Blue.png │ ├── Frame 50 Blue.png │ ├── Frame 51 Green.png │ ├── HamburgerArrow.png │ ├── Hello_World.png │ ├── LottieLogo1.png │ ├── LottieLogo2.png │ ├── Match Parent.png │ ├── MotionCorpse-Jrcanest.png │ ├── Name.png │ ├── PinJump.png │ ├── Tests_CheckSwitch.png │ ├── Tests_Fill.png │ ├── Tests_GradientFill.png │ ├── Tests_KeyframeTypes.png │ ├── Tests_Laugh4.png │ ├── Tests_LoopPlayOnce.png │ ├── Tests_MaskInv.png │ ├── Tests_MatteTimeStretchLine.png │ ├── Tests_MatteTimeStretchScan.png │ ├── Tests_Parenting.png │ ├── Tests_Precomps.png │ ├── Tests_Remap.png │ ├── Tests_Repeater.png │ ├── Tests_ShapeTypes.png │ ├── Tests_SplitDimensions.png │ ├── Tests_Stroke.png │ ├── Tests_TextBaseline.png │ ├── Tests_TimeStretch.png │ ├── Tests_TimeStretchPrecomp.png │ ├── Tests_TrackMattes.png │ ├── Tests_TrimPaths.png │ ├── TwitterHeart.png │ ├── WeAccept.png │ ├── Wrap Content.png │ ├── lottiefiles.com_-_ATM.png │ ├── lottiefiles.com_-_Beating_Heart.png │ ├── lottiefiles.com_-_Camera.png │ ├── lottiefiles.com_-_Emoji_Shock.png │ ├── lottiefiles.com_-_Emoji_Tongue.png │ ├── lottiefiles.com_-_Emoji_Wink.png │ ├── lottiefiles.com_-_Favorite_Star.png │ ├── lottiefiles.com_-_Gears.png │ ├── lottiefiles.com_-_Im_Thirsty.png │ ├── lottiefiles.com_-_Loading_1.png │ ├── lottiefiles.com_-_Loading_2.png │ ├── lottiefiles.com_-_Loading_3.png │ ├── lottiefiles.com_-_Loading_4.png │ ├── lottiefiles.com_-_Mail_Sent.png │ ├── lottiefiles.com_-_Permission.png │ ├── lottiefiles.com_-_Play_and_Like_It.png │ ├── lottiefiles.com_-_Postcard.png │ ├── lottiefiles.com_-_Preloader.png │ ├── lottiefiles.com_-_Progress_Success.png │ ├── lottiefiles.com_-_Retweet.png │ ├── lottiefiles.com_-_Star_Wars_Rey.png │ ├── lottiefiles.com_-_Tadah_Image.png │ ├── lottiefiles.com_-_Tadah_Video.png │ ├── lottiefiles.com_-_Touch_ID.png │ ├── lottiefiles.com_-_Video_Camera.png │ ├── null_color_filter.png │ ├── same_composition_first_run_PinJump.png │ ├── same_composition_second_run_PinJump.png │ ├── test_changing_compositions_PinJump.png │ ├── test_changing_compositions_TwitterHeart.png │ └── yellow_color_filter.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── samples │ │ ├── FragmentVisibilityTests.kt │ │ ├── LottieAnimationViewTest.kt │ │ ├── LottieIdlingAnimationResource.kt │ │ ├── LottieIdlingResource.kt │ │ └── isAnimating.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── AndroidWave.json │ │ ├── HamburgerArrow.json │ │ ├── Lottie Logo 1.json │ │ ├── Lottie Logo 2.json │ │ └── fonts │ │ │ └── Comic Neue.ttf │ ├── ic_launcher-web.png │ ├── kotlin │ │ └── com │ │ │ └── airbnb │ │ │ └── lottie │ │ │ └── samples │ │ │ ├── AnimatorListenerAdapter.kt │ │ │ ├── BullseyeActivity.kt │ │ │ ├── DynamicActivity.kt │ │ │ ├── DynamicTextActivity.kt │ │ │ ├── EmptyActivity.kt │ │ │ ├── LottieApplication.kt │ │ │ ├── LottieFontViewGroup.kt │ │ │ ├── LottiefilesFragment.kt │ │ │ ├── MainActivity.kt │ │ │ ├── OnSeekBarChangeListenerAdapter.kt │ │ │ ├── PlayerActivity.kt │ │ │ ├── PlayerFragment.kt │ │ │ ├── PlayerViewModel.kt │ │ │ ├── PreviewFragment.kt │ │ │ ├── PreviewItemView.kt │ │ │ ├── QRScanActivity.kt │ │ │ ├── SimpleAnimationActivity.kt │ │ │ ├── TrimView.kt │ │ │ ├── TypographyDemoActivity.kt │ │ │ ├── WishListActivity.kt │ │ │ ├── model │ │ │ └── CompositionArgs.kt │ │ │ ├── utils │ │ │ ├── ActivityViewBindingDelegate.kt │ │ │ ├── BaseEpoxyFragment.kt │ │ │ ├── BaseFragment.kt │ │ │ ├── FragmentViewBindingDelegate.kt │ │ │ ├── TypeExtensions.kt │ │ │ └── ViewViewBindingDelegate.kt │ │ │ └── views │ │ │ ├── BackgroundColorView.kt │ │ │ ├── BottomSheetItemView.kt │ │ │ ├── ControlBarItemToggleView.kt │ │ │ ├── InterceptingFrameLayout.kt │ │ │ ├── ListingCard.kt │ │ │ ├── Marquee.kt │ │ │ ├── TabBarItemView.kt │ │ │ └── WishListIconView.kt │ └── res │ │ ├── anim │ │ ├── hold.xml │ │ ├── slide_in_right.xml │ │ └── slide_out_right.xml │ │ ├── color │ │ ├── bottom_bar_label.xml │ │ └── inverted_text.xml │ │ ├── drawable-nodpi │ │ ├── get_it_on_play.png │ │ ├── lottiefiles_logo.png │ │ └── lottiefiles_screen.png │ │ ├── drawable-xxxhdpi │ │ └── gilbert_animated.png │ │ ├── drawable │ │ ├── bottom_bar_tint_list.xml │ │ ├── control_bar_item_view_background.xml │ │ ├── control_bar_item_view_background_activated.xml │ │ ├── control_bar_item_view_background_deactivated.xml │ │ ├── control_bar_item_view_text_color.xml │ │ ├── ic_assets.xml │ │ ├── ic_assets_selector.xml │ │ ├── ic_assets_white.xml │ │ ├── ic_back_black.xml │ │ ├── ic_back_white.xml │ │ ├── ic_border_off.xml │ │ ├── ic_border_on.xml │ │ ├── ic_chart.xml │ │ ├── ic_close.xml │ │ ├── ic_color.xml │ │ ├── ic_content_cut.xml │ │ ├── ic_device.xml │ │ ├── ic_error.xml │ │ ├── ic_eye_black.xml │ │ ├── ic_eye_selector.xml │ │ ├── ic_eye_teal.xml │ │ ├── ic_eye_white.xml │ │ ├── ic_fast_forward.xml │ │ ├── ic_file.xml │ │ ├── ic_file_selector.xml │ │ ├── ic_file_white.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert.xml │ │ ├── ic_invert_black.xml │ │ ├── ic_invert_white.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_layers.xml │ │ ├── ic_learn.xml │ │ ├── ic_loop.xml │ │ ├── ic_loop_disabled.xml │ │ ├── ic_loop_enabled.xml │ │ ├── ic_lottiefiles.xml │ │ ├── ic_memory.xml │ │ ├── ic_merge_paths.xml │ │ ├── ic_more_vert.xml │ │ ├── ic_more_vert_selector.xml │ │ ├── ic_more_vert_white.xml │ │ ├── ic_nav_close.xml │ │ ├── ic_nav_close_selector.xml │ │ ├── ic_nav_close_white.xml │ │ ├── ic_network.xml │ │ ├── ic_network_selector.xml │ │ ├── ic_network_white.xml │ │ ├── ic_pause.xml │ │ ├── ic_play.xml │ │ ├── ic_play_pause.xml │ │ ├── ic_qr_overlay.xml │ │ ├── ic_qr_scan.xml │ │ ├── ic_qr_scan_selector.xml │ │ ├── ic_qr_scan_white.xml │ │ ├── ic_restart.xml │ │ ├── ic_search.xml │ │ ├── ic_sentiment_dissatisfied.xml │ │ ├── ic_sentiment_satisfied.xml │ │ ├── ic_settings.xml │ │ ├── ic_shortcut_animated_app_tutorial.xml │ │ ├── ic_shortcut_animated_typography.xml │ │ ├── ic_shortcut_animation_viewer.xml │ │ ├── ic_shortcut_full_screen_animation.xml │ │ ├── ic_show_masks_and_mattes.xml │ │ ├── ic_showcase.xml │ │ ├── ic_storage.xml │ │ ├── ic_trim.xml │ │ ├── ic_view.xml │ │ ├── ic_warning.xml │ │ ├── ic_warning_wrapped.xml │ │ ├── inverted_background.xml │ │ ├── list_item_animation_background.xml │ │ ├── outline.xml │ │ ├── outline_inverted.xml │ │ ├── outline_normal.xml │ │ ├── play_button_background.xml │ │ ├── render_time_button_background.xml │ │ ├── showcase_preview_dynamic_type.xml │ │ ├── showcase_preview_lottie.xml │ │ └── tab_bar_underline_selector.xml │ │ ├── layout │ │ ├── auto_play.xml │ │ ├── auto_play_gone.xml │ │ ├── base_fragment.xml │ │ ├── bottom_sheet_key_paths.xml │ │ ├── bottom_sheet_render_times.xml │ │ ├── bottom_sheet_warnings.xml │ │ ├── bullseye_activity.xml │ │ ├── control_bar.xml │ │ ├── control_bar_background_color.xml │ │ ├── control_bar_player_controls.xml │ │ ├── control_bar_speed.xml │ │ ├── control_bar_trim.xml │ │ ├── dynamic_activity.xml │ │ ├── dynamic_text_activity.xml │ │ ├── empty_activity.xml │ │ ├── epoxy_recycler_view_fragment.xml │ │ ├── item_view_bottom_sheet.xml │ │ ├── item_view_control_bar.xml │ │ ├── list_activity.xml │ │ ├── list_item_preview.xml │ │ ├── listing_card.xml │ │ ├── lottie_activity_main.xml │ │ ├── lottiefiles_fragment.xml │ │ ├── main_activity.xml │ │ ├── marquee.xml │ │ ├── no_auto_play.xml │ │ ├── pager_item_app_intro.xml │ │ ├── player_activity.xml │ │ ├── player_fragment.xml │ │ ├── qrscan_activity.xml │ │ ├── simple_animation_activity.xml │ │ ├── tab_item.xml │ │ └── typography_demo_activity.xml │ │ ├── menu │ │ ├── bottom_bar.xml │ │ └── fragment_player.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── bullseye.json │ │ ├── full_screen.json │ │ ├── hamburger_arrow.json │ │ ├── heart.json │ │ ├── lottielogo.json │ │ ├── name.json │ │ └── walkthrough.json │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-v27 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── shortcuts.xml │ └── release │ └── java │ └── com │ └── airbnb │ └── lotte │ └── samples │ └── Lotte.java ├── settings.gradle ├── sign.sh ├── snapshot-tests ├── build.gradle └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── snapshots │ │ ├── LottieSnapshotTest.kt │ │ ├── SnapshotTestCase.kt │ │ ├── SnapshotTestCaseContext.kt │ │ ├── tests │ │ ├── ApplyOpacityToLayerTestCase.kt │ │ ├── AssetsTestCase.kt │ │ ├── ClipChildrenTestCase.kt │ │ ├── ClipTextToBoundingBoxTestCase.kt │ │ ├── ColorStateListColorFilterTestCase.kt │ │ ├── ComposeDynamicPropertiesTestCase.kt │ │ ├── ComposeScaleTypesTestCase.kt │ │ ├── CompositionFrameRate.kt │ │ ├── CustomBoundsTestCase.kt │ │ ├── DisabledAnimationsTestCase.kt │ │ ├── DynamicPropertiesTestCase.kt │ │ ├── FailureTestCase.kt │ │ ├── FrameBoundariesTestCase.kt │ │ ├── LargeCompositionSoftwareRendering.kt │ │ ├── MarkersTestCase.kt │ │ ├── NightModeTestCase.kt │ │ ├── OutlineMasksAndMattesTestCase.kt │ │ ├── PainterTestCase.kt │ │ ├── PartialFrameProgressTestCase.kt │ │ ├── PolygonStrokeTestCase.kt │ │ ├── ProdAnimationsTestCase.kt │ │ ├── ScaleTypesTestCase.kt │ │ ├── SeekBarTestCase.kt │ │ ├── SoftwareRenderingDynamicPropertiesInvalidationTestCase.kt │ │ └── TextTestCase.kt │ │ └── utils │ │ ├── BitmapPool.kt │ │ ├── HappoSnapshotter.kt │ │ ├── ObjectPool.kt │ │ ├── Snapshot.kt │ │ ├── SuspendingSemaphore.kt │ │ ├── TeeOutputStream.kt │ │ └── Utils.kt │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── AndroidWave.json │ ├── HamburgerArrow.json │ ├── Images │ │ ├── Heart-1200.png │ │ ├── Heart-80.png │ │ └── WeAccept │ │ │ └── img_0.png │ ├── Logo │ │ └── LogoSmall.json │ ├── Lottie Logo 1.json │ ├── Lottie Logo 2.json │ ├── Mobilo │ │ ├── A.json │ │ ├── Apostrophe.json │ │ ├── B.json │ │ ├── BlinkingCursor.json │ │ ├── C.json │ │ ├── Colon.json │ │ ├── Comma.json │ │ ├── D.json │ │ ├── E.json │ │ ├── F.json │ │ ├── G.json │ │ ├── H.json │ │ ├── I.json │ │ ├── J.json │ │ ├── K.json │ │ ├── L.json │ │ ├── M.json │ │ ├── N.json │ │ ├── O.json │ │ ├── P.json │ │ ├── Q.json │ │ ├── R.json │ │ ├── S.json │ │ ├── T.json │ │ ├── U.json │ │ ├── V.json │ │ ├── W.json │ │ ├── X.json │ │ ├── Y.json │ │ └── Z.json │ ├── Tests │ │ ├── TelegramAlphaCompat.json │ │ ├── 2FrameAnimation.json │ │ ├── 2ParentsMatte.json │ │ ├── Airbnb.zip │ │ ├── Airbnb400.zip │ │ ├── Airbnb800.zip │ │ ├── AnimatedShadow.json │ │ ├── AutoOrient.json │ │ ├── BeyondBounds.json │ │ ├── BounceEasings.json │ │ ├── BoxPosition.json │ │ ├── CheckSwitch.json │ │ ├── DefaultLineJoinCap.json │ │ ├── DifferentPointsCount.json │ │ ├── Dynamic1.json │ │ ├── Dynamic2.json │ │ ├── DynamicGradient.json │ │ ├── DynamicText.json │ │ ├── EditedColor.json │ │ ├── EllipseDirection.json │ │ ├── EmbeddedFont.zip │ │ ├── EndFrame.json │ │ ├── Fill.json │ │ ├── FillBlur.json │ │ ├── Font_Text_Justification_Translate_Scale_Rotation_Test.json │ │ ├── Frame.json │ │ ├── Framerate.json │ │ ├── GradientColorInterpolation.json │ │ ├── GradientColorKeyframeAnimation.zip │ │ ├── GradientFill.json │ │ ├── GradientFillBlur.json │ │ ├── GradientOneColor.json │ │ ├── GradientOpacityInterpolation.json │ │ ├── GradientStrokeBlur.json │ │ ├── GradientWithVaryingOpacityStops.json │ │ ├── Heart.json │ │ ├── InterpolateBetweenOpacityStops.json │ │ ├── InterpolatorLoopBack.json │ │ ├── KeyframeTypes.json │ │ ├── LargeComposition.json │ │ ├── LargeSquare.json │ │ ├── Laugh4.json │ │ ├── LayerBlend_0.json │ │ ├── LayerBlend_1.json │ │ ├── LayerBlend_10.json │ │ ├── LayerBlend_11.json │ │ ├── LayerBlend_12.json │ │ ├── LayerBlend_13.json │ │ ├── LayerBlend_14.json │ │ ├── LayerBlend_15.json │ │ ├── LayerBlend_16.json │ │ ├── LayerBlend_17.json │ │ ├── LayerBlend_2.json │ │ ├── LayerBlend_3.json │ │ ├── LayerBlend_4.json │ │ ├── LayerBlend_5.json │ │ ├── LayerBlend_6.json │ │ ├── LayerBlend_7.json │ │ ├── LayerBlend_8.json │ │ ├── LayerBlend_9.json │ │ ├── LoopPlayOnce.json │ │ ├── Marker.json │ │ ├── MaskA.json │ │ ├── MaskInv.json │ │ ├── MaskNone.json │ │ ├── Masks.json │ │ ├── MatteTimeStretchLine.json │ │ ├── MatteTimeStretchScan.json │ │ ├── MissingEndValue.json │ │ ├── MiterLimit.json │ │ ├── Multiline.json │ │ ├── NullEndShape.json │ │ ├── OpacityStops.json │ │ ├── OverlapShapeWithOpacity.json │ │ ├── Parenting.json │ │ ├── Polygon.json │ │ ├── PrecompBlur.json │ │ ├── PrecompBlurDecimapPrecompSize.json │ │ ├── Precomps.json │ │ ├── RGB.json │ │ ├── RGBMarker.json │ │ ├── Rect1.json │ │ ├── Rect3.json │ │ ├── Rect4.json │ │ ├── Rect5.json │ │ ├── Rect6.json │ │ ├── Rect7.json │ │ ├── Rect8.json │ │ ├── Rect9.json │ │ ├── ReducedMotion.json │ │ ├── Remap.json │ │ ├── Repeater.json │ │ ├── ReversedStar.json │ │ ├── RoundedCorners.json │ │ ├── RoundedNonClosed.json │ │ ├── RoundedWithAlreadyRoundedCorners.json │ │ ├── Scale0.json │ │ ├── ShapeTypes.json │ │ ├── Shapes.json │ │ ├── Skew.json │ │ ├── SolidLayerTransform.json │ │ ├── SplitDimensions.json │ │ ├── SplitPathTransform.json │ │ ├── Squares.json │ │ ├── StarSkew.json │ │ ├── StartEndFrame.json │ │ ├── StaticShadow.json │ │ ├── Stroke.json │ │ ├── StrokeBlur.json │ │ ├── SzFont.json │ │ ├── SzGlyph.json │ │ ├── Text.json │ │ ├── TextBaseline.json │ │ ├── TextWithParentAlpha.json │ │ ├── TextWithPsCenter.json │ │ ├── TextWithPsLeft.json │ │ ├── Text_Justification_Translate_Scale_Rotation_Text.json │ │ ├── TgsWithoutOpacity.json │ │ ├── Thumb.json │ │ ├── TimeRemapAndStartOffset.json │ │ ├── TimeStretch.json │ │ ├── TimeStretchAndStartOffset.json │ │ ├── TimeStretchMask.json │ │ ├── TimeStretchPrecomp.json │ │ ├── TimeStretchPrecomp2.json │ │ ├── TrackMattes.json │ │ ├── TransformWithoutEndValues.json │ │ ├── TriangleLargeStroke.json │ │ ├── TrimPathWrapAround.json │ │ ├── TrimPaths.json │ │ ├── TrimPathsInsideAndOutsideGroup.json │ │ ├── WeAccept.json │ │ ├── WeAcceptInlineImage.json │ │ ├── ZipInlineImage.zip │ │ ├── adrock.json │ │ ├── adrock_converted.json │ │ ├── anim_jpg.zip │ │ ├── august_view_pulse.zip │ │ ├── bm.json │ │ ├── bm_converted.json │ │ ├── catrim.json │ │ ├── catrim_converted.json │ │ ├── dalek.json │ │ ├── dalek_converted.json │ │ ├── exported_with_flow.json │ │ ├── hd.json │ │ ├── map.zip │ │ ├── rect2.json │ │ ├── text-offset-example.json │ │ └── winners.tgs │ ├── fonts │ │ ├── Comic Neue.ttf │ │ ├── Helvetica Neue.ttf │ │ ├── Helvetica.ttf │ │ ├── Open Sans.ttf │ │ ├── PT Serif.ttf │ │ └── Roboto.ttf │ └── lottiefiles │ │ ├── 100_percent.json │ │ ├── Plane.json │ │ ├── StreetByMorning.json │ │ ├── ___.json │ │ ├── a_mountain.json │ │ ├── accept_arrows.json │ │ ├── android_fingerprint.json │ │ ├── angel.zip │ │ ├── anima.json │ │ ├── animated_graph.json │ │ ├── animated_laptop_.json │ │ ├── animated_logo.json │ │ ├── atm_link.json │ │ ├── autoconnect_loading.json │ │ ├── ball_&_map.zip │ │ ├── banner_animation.json │ │ ├── bb8.json │ │ ├── bell.json │ │ ├── birds.json │ │ ├── bitcoin_to_the_moon.json │ │ ├── blood_transfusion_kawaii.json │ │ ├── bomb.json │ │ ├── books.json │ │ ├── bootymovin.json │ │ ├── bounching_ball.json │ │ ├── brain__.json │ │ ├── browser.json │ │ ├── building_evolution_animation.json │ │ ├── camera.json │ │ ├── camptravel.zip │ │ ├── cancel_button.json │ │ ├── cash.json │ │ ├── change_to_search_bar.json │ │ ├── check_pop.json │ │ ├── chinese.json │ │ ├── clock.json │ │ ├── cloud_disconnection.json │ │ ├── code_invite_success.json │ │ ├── coding_ape.json │ │ ├── coinfall.json │ │ ├── colorline.json │ │ ├── confusion.json │ │ ├── construction_site.json │ │ ├── cooking_app.json │ │ ├── countdown.json │ │ ├── credit_card.json │ │ ├── credit_level.json │ │ ├── cube_loader.json │ │ ├── cubo_livre.json │ │ ├── curly_hair_character_loop.json │ │ ├── cycle_animation.json │ │ ├── day_night_cycle.json │ │ ├── day_of_the_dead.json │ │ ├── deadpool.json │ │ ├── delivery_van.json │ │ ├── developer-animation.zip │ │ ├── dna_loader.json │ │ ├── dog.json │ │ ├── done.json │ │ ├── download copy.json │ │ ├── download.json │ │ ├── downloader.json │ │ ├── drop.json │ │ ├── drop_to_refresh.json │ │ ├── edited-landscape.json │ │ ├── elephant_trunk_swing.json │ │ ├── emoji_shock.json │ │ ├── emoji_tongue.json │ │ ├── emoji_wink.json │ │ ├── empty_status.json │ │ ├── estimate.json │ │ ├── fab_animate.json │ │ ├── fabulous_onboarding_animation.json │ │ ├── favourite_app_icon.json │ │ ├── file_error.json │ │ ├── finance_animation.json │ │ ├── fingerprint_scanner.json │ │ ├── finish,done.json │ │ ├── fish.json │ │ ├── flag_of_mexico.json │ │ ├── flow.json │ │ ├── frog.json │ │ ├── funky_chicken.json │ │ ├── gaming_pad.json │ │ ├── gears.json │ │ ├── geometry.zip │ │ ├── glow_loading.json │ │ ├── gradient_animated_background.json │ │ ├── happy birthday.json │ │ ├── hardware.json │ │ ├── hindi.json │ │ ├── hint_01.json │ │ ├── i'm_thirsty!.json │ │ ├── immiguide_.json │ │ ├── in-app_purchasing.json │ │ ├── india.json │ │ ├── infinite_rainbow.json │ │ ├── intelia_logo_animation.json │ │ ├── iphone_x_loading.json │ │ ├── jojo_the_bird.json │ │ ├── jolly_walker.json │ │ ├── judgement.json │ │ ├── kod.io_logo_reveal.json │ │ ├── la_calavera.json │ │ ├── landing_page.json │ │ ├── lego_loader.json │ │ ├── light.json │ │ ├── lightsaber.json │ │ ├── little_girl_jumping_-_loader.json │ │ ├── loading copy.json │ │ ├── loading disc.json │ │ ├── loading.json │ │ ├── loading_semicircle.json │ │ ├── location.json │ │ ├── location_marker.json │ │ ├── location_pin.json │ │ ├── lottie_logo_1.json │ │ ├── lottiepreview_qr.json │ │ ├── mailsent.json │ │ ├── man_and_pay_with_credit_card.json │ │ ├── map_animation.json │ │ ├── material loading.json │ │ ├── material_loader.json │ │ ├── material_loading_2.json │ │ ├── material_wave_loading.json │ │ ├── me_at_office.json │ │ ├── medal.json │ │ ├── menuButton2.json │ │ ├── menu_button_alt.json │ │ ├── mindful.json │ │ ├── mnemonics.json │ │ ├── money.json │ │ ├── motorcycle.json │ │ ├── moving bus.json │ │ ├── moving_eye.json │ │ ├── no_internet_connection.json │ │ ├── notification_request.json │ │ ├── octopus.json │ │ ├── ofrenda.json │ │ ├── on_off_settings_switch.json │ │ ├── pagado.json │ │ ├── pagination.json │ │ ├── panel2d.json │ │ ├── passport.json │ │ ├── patient_successfully_added.json │ │ ├── payme.json │ │ ├── peli-canon.json │ │ ├── pen_tool_loop.json │ │ ├── pencil_write.json │ │ ├── penguin.json │ │ ├── permission.json │ │ ├── personal_character.json │ │ ├── ph_onboarding_.json │ │ ├── phonological.json │ │ ├── pink_drink_machine.json │ │ ├── plane_to_dollar.json │ │ ├── play,_pause.json │ │ ├── play_and_like_it.json │ │ ├── play_button.json │ │ ├── playing.json │ │ ├── point.json │ │ ├── poo_loader.json │ │ ├── powerupp_app_onboard (1).json │ │ ├── powerupp_app_onboard.json │ │ ├── preloader.json │ │ ├── print.json │ │ ├── progress_bar 2.json │ │ ├── progress_bar.json │ │ ├── rating.json │ │ ├── red_pocket_pop_up.json │ │ ├── rejection.json │ │ ├── retweet.json │ │ ├── rocket.json │ │ ├── rocksauce_title_card.json │ │ ├── scan.json │ │ ├── scan_qr_code_success.json │ │ ├── search_button.json │ │ ├── security_token_roundtable.zip │ │ ├── sensor_scan.zip │ │ ├── servishero_loading.json │ │ ├── simple_loader.json │ │ ├── sky.zip │ │ ├── slack_app_loader.json │ │ ├── snowcation.json │ │ ├── socar_logo.json │ │ ├── soda_loader.json │ │ ├── spacehub.json │ │ ├── spinner loading.json │ │ ├── splashy_loader.json │ │ ├── square_drop_loader.json │ │ ├── star 2.json │ │ ├── streetby_test_loading.json │ │ ├── submit button.json │ │ ├── summer.json │ │ ├── sushi_and_wine.zip │ │ ├── swiftkey-logo.json │ │ ├── swipe_menu.json │ │ ├── swipe_right_indicator.json │ │ ├── switch_loop.json │ │ ├── the_final_frontier.json │ │ ├── tigerobo_demo.json │ │ ├── timer_(3_second_loop).json │ │ ├── toggle.json │ │ ├── toggle_switch.json │ │ ├── touch_id.json │ │ ├── tractor.json │ │ ├── tractor_animation.json │ │ ├── trail_loading.json │ │ ├── trophy.json │ │ ├── trophy_animation.zip │ │ ├── truecosmos.json │ │ ├── turbine.json │ │ ├── typing dot.json │ │ ├── uk.json │ │ ├── updating_map.json │ │ ├── us.json │ │ ├── video_cam.json │ │ ├── vigilance_camera.json │ │ ├── volume_indicator.json │ │ ├── volume_shake_indicator.json │ │ ├── vr_animation.json │ │ ├── vr_sickness.json │ │ ├── walking.json │ │ ├── walking_arrow.json │ │ ├── wallet recharge.json │ │ ├── washing_machine.json │ │ ├── win_result_2.json │ │ ├── wolf_peek.json │ │ ├── x_pop.json │ │ ├── xamarin_logo_2.json │ │ ├── xuanwheel_logo.json │ │ ├── yoga_carpet.json │ │ └── youtube_icon_reveal.json │ ├── java │ └── com │ │ └── airbnb │ │ └── lottie │ │ └── snapshots │ │ ├── FilmStripView.kt │ │ ├── NoCacheLottieAnimationView.kt │ │ ├── SnapshotTestActivity.kt │ │ └── utils │ │ ├── ActivityViewBindingDelegate.kt │ │ └── ViewBindingDelegate.kt │ └── res │ ├── color │ └── test_color_filter.xml │ ├── drawable-nodpi │ └── airbnb.png │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_close.xml │ ├── layout │ ├── clip_children.xml │ ├── film_strip_snapshots_activity.xml │ ├── film_strip_view.xml │ ├── seek_bar.xml │ ├── snapshot_tests_activity.xml │ └── test_color_filter.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── raw-night │ └── day_night.json │ ├── raw │ ├── day_night.json │ ├── heart.json │ ├── isrgrootx1.der │ └── solid.json │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── themes.xml ├── update-baseline-profiles.sh ├── upload_release.sh ├── version.sh └── versions.properties /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: gpeal 2 | open_collective: lottie 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/non-rendering-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.github/ISSUE_TEMPLATE/non-rendering-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rendering-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.github/ISSUE_TEMPLATE/rendering-bug.md -------------------------------------------------------------------------------- /.github/workflows/post_snapshot_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.github/workflows/post_snapshot_comment.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /After Effects Samples/Benchmark.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Benchmark.aep -------------------------------------------------------------------------------- /After Effects Samples/DynamicGradient.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/DynamicGradient.aep -------------------------------------------------------------------------------- /After Effects Samples/EmptyState.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/EmptyState.aep -------------------------------------------------------------------------------- /After Effects Samples/HamburgerArrow.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/HamburgerArrow.aep -------------------------------------------------------------------------------- /After Effects Samples/Images.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Images.aep -------------------------------------------------------------------------------- /After Effects Samples/LottieLogos.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/LottieLogos.aep -------------------------------------------------------------------------------- /After Effects Samples/Masks.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Masks.aep -------------------------------------------------------------------------------- /After Effects Samples/MatteTimeStretch.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/MatteTimeStretch.aep -------------------------------------------------------------------------------- /After Effects Samples/Miter Limit.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Miter Limit.aep -------------------------------------------------------------------------------- /After Effects Samples/Multiline.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Multiline.aep -------------------------------------------------------------------------------- /After Effects Samples/PinJump.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/PinJump.aep -------------------------------------------------------------------------------- /After Effects Samples/PointText.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/PointText.aep -------------------------------------------------------------------------------- /After Effects Samples/RGBMarker.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/RGBMarker.aep -------------------------------------------------------------------------------- /After Effects Samples/Skew.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Skew.aep -------------------------------------------------------------------------------- /After Effects Samples/Test/KeyPath.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/KeyPath.aep -------------------------------------------------------------------------------- /After Effects Samples/Test/LottieTests.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/LottieTests.aep -------------------------------------------------------------------------------- /After Effects Samples/Test/MatteMask.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/MatteMask.aep -------------------------------------------------------------------------------- /After Effects Samples/Test/Star.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/Star.aep -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_Fill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_Fill.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_KeyframeTypes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_KeyframeTypes.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_Parenting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_Parenting.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_Precomps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_Precomps.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_ShapeTypes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_ShapeTypes.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_SplitDimensions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_SplitDimensions.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_Stroke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_Stroke.gif -------------------------------------------------------------------------------- /After Effects Samples/Test/_Gif/Test_TrackMattes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Test/_Gif/Test_TrackMattes.gif -------------------------------------------------------------------------------- /After Effects Samples/Time Stretch Mask.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Time Stretch Mask.aep -------------------------------------------------------------------------------- /After Effects Samples/TrimPathsInsideAndOutsideGroup.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/TrimPathsInsideAndOutsideGroup.aep -------------------------------------------------------------------------------- /After Effects Samples/TwitterHeart.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/TwitterHeart.aep -------------------------------------------------------------------------------- /After Effects Samples/Walkthrough.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/After Effects Samples/Walkthrough.aep -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_COMPOSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/CHANGELOG_COMPOSE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESIGNER_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/DESIGNER_NOTES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/RELEASE.md -------------------------------------------------------------------------------- /app-benchmark/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/build.gradle -------------------------------------------------------------------------------- /app-benchmark/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/proguard-rules.pro -------------------------------------------------------------------------------- /app-benchmark/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app-benchmark/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-benchmark/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-benchmark/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-benchmark/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-benchmark/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-benchmark/src/main/res/raw/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/raw/benchmark.json -------------------------------------------------------------------------------- /app-benchmark/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/app-benchmark/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /baselineprofile/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /baselineprofile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/baselineprofile/build.gradle -------------------------------------------------------------------------------- /baselineprofile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/benchmark/build.gradle -------------------------------------------------------------------------------- /benchmark/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/benchmark/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /deploy_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/deploy_snapshot.sh -------------------------------------------------------------------------------- /gifs/Community 2_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Community 2_3.gif -------------------------------------------------------------------------------- /gifs/Duolingo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Duolingo.svg -------------------------------------------------------------------------------- /gifs/Example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Example1.gif -------------------------------------------------------------------------------- /gifs/Example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Example2.gif -------------------------------------------------------------------------------- /gifs/Example3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Example3.gif -------------------------------------------------------------------------------- /gifs/Example4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Example4.gif -------------------------------------------------------------------------------- /gifs/Sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gifs/Sponsor.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/airbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/airbnb.svg -------------------------------------------------------------------------------- /images/coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/coinbase.svg -------------------------------------------------------------------------------- /images/emerge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/emerge.png -------------------------------------------------------------------------------- /images/lottiefiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/lottiefiles.svg -------------------------------------------------------------------------------- /images/lottielab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/lottielab.png -------------------------------------------------------------------------------- /images/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/stream.png -------------------------------------------------------------------------------- /images/tonal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/images/tonal.svg -------------------------------------------------------------------------------- /issue-repro-compose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro-compose/build.gradle -------------------------------------------------------------------------------- /issue-repro-compose/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro-compose/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /issue-repro-compose/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro-compose/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro-compose/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro-compose/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro-compose/src/main/res/raw/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro-compose/src/main/res/raw/heart.json -------------------------------------------------------------------------------- /issue-repro-compose/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro-compose/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /issue-repro/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/build.gradle -------------------------------------------------------------------------------- /issue-repro/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /issue-repro/src/main/res/layout/issue_repro_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/layout/issue_repro_activity.xml -------------------------------------------------------------------------------- /issue-repro/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /issue-repro/src/main/res/raw/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/raw/heart.json -------------------------------------------------------------------------------- /issue-repro/src/main/res/raw/intro.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /issue-repro/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/issue-repro/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lint.xml -------------------------------------------------------------------------------- /lottie-compose/api/lottie-compose.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie-compose/api/lottie-compose.api -------------------------------------------------------------------------------- /lottie-compose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie-compose/build.gradle -------------------------------------------------------------------------------- /lottie-compose/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie-compose/gradle.properties -------------------------------------------------------------------------------- /lottie-compose/src/main/baseline-prof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie-compose/src/main/baseline-prof.txt -------------------------------------------------------------------------------- /lottie/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/build.gradle -------------------------------------------------------------------------------- /lottie/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/gradle.properties -------------------------------------------------------------------------------- /lottie/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lottie/src/main/generated/baselineProfiles/baseline-prof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/generated/baselineProfiles/baseline-prof.txt -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/AsyncUpdates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/AsyncUpdates.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/Cancellable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/Cancellable.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/L.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/L.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/Lottie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/Lottie.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieConfig.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieDrawable.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieImageAsset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieImageAsset.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieListener.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieLogger.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieProperty.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieResult.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/LottieTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/LottieTask.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/RenderMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/RenderMode.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/TextDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/TextDelegate.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/animation/LPaint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/animation/LPaint.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/model/Font.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/model/Font.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/model/KeyPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/model/KeyPath.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/model/Marker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/model/Marker.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/parser/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/parser/JsonUtils.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/utils/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/utils/Logger.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/utils/MiscUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/utils/MiscUtils.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/utils/Utils.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/value/Keyframe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/value/Keyframe.java -------------------------------------------------------------------------------- /lottie/src/main/java/com/airbnb/lottie/value/ScaleXY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/java/com/airbnb/lottie/value/ScaleXY.java -------------------------------------------------------------------------------- /lottie/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /lottie/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /lottie/src/test/java/com/airbnb/lottie/BaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/test/java/com/airbnb/lottie/BaseTest.java -------------------------------------------------------------------------------- /lottie/src/test/java/com/airbnb/lottie/Fixtures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/test/java/com/airbnb/lottie/Fixtures.java -------------------------------------------------------------------------------- /lottie/src/test/java/com/airbnb/lottie/KeyPathTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/test/java/com/airbnb/lottie/KeyPathTest.java -------------------------------------------------------------------------------- /lottie/src/test/java/com/airbnb/lottie/LottieTaskTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/test/java/com/airbnb/lottie/LottieTaskTest.java -------------------------------------------------------------------------------- /lottie/src/test/java/com/airbnb/lottie/model/MarkerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/test/java/com/airbnb/lottie/model/MarkerTest.java -------------------------------------------------------------------------------- /lottie/src/test/resources/test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/lottie/src/test/resources/test1.json -------------------------------------------------------------------------------- /post_pr_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/post_pr_comment.js -------------------------------------------------------------------------------- /sample-compose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/build.gradle -------------------------------------------------------------------------------- /sample-compose/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample-compose/src/main/assets/AndroidWave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/AndroidWave.json -------------------------------------------------------------------------------- /sample-compose/src/main/assets/HamburgerArrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/HamburgerArrow.json -------------------------------------------------------------------------------- /sample-compose/src/main/assets/Images/WeAccept/img_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/Images/WeAccept/img_0.png -------------------------------------------------------------------------------- /sample-compose/src/main/assets/Images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/Images/android.png -------------------------------------------------------------------------------- /sample-compose/src/main/assets/Lottie Logo 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/Lottie Logo 1.json -------------------------------------------------------------------------------- /sample-compose/src/main/assets/Lottie Logo 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/Lottie Logo 2.json -------------------------------------------------------------------------------- /sample-compose/src/main/assets/fonts/Comic Neue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/fonts/Comic Neue.ttf -------------------------------------------------------------------------------- /sample-compose/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_border.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_color.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_device.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_examples.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_file.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_layers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_layers.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_lottie_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_lottie_files.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_masks_and_mattes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_masks_and_mattes.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_network.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_qr_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_qr_scan.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_showcase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_showcase.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_speed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_speed.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-compose/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-compose/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-compose/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-compose/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw-night/sun_moon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw-night/sun_moon.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/bar.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/bar_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/bar_1.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/bar_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/bar_2.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/bar_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/bar_3.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/gradient.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/heart.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/loading.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/name.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/sun_moon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/sun_moon.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/walkthrough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/walkthrough.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/we_accept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/we_accept.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/raw/we_accept_inline_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/raw/we_accept_inline_image.json -------------------------------------------------------------------------------- /sample-compose/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample-compose/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample-compose/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/lint-baseline.xml -------------------------------------------------------------------------------- /sample/proguard-multidex-rules.pro: -------------------------------------------------------------------------------- 1 | -keep class com.airbnb.lottie.samples.** { *; } -------------------------------------------------------------------------------- /sample/screenshots/300x300 @2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x300 @2x.png -------------------------------------------------------------------------------- /sample/screenshots/300x300 @4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x300 @4x.png -------------------------------------------------------------------------------- /sample/screenshots/300x300 centerCrop @2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x300 centerCrop @2x.png -------------------------------------------------------------------------------- /sample/screenshots/300x300 centerCrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x300 centerCrop.png -------------------------------------------------------------------------------- /sample/screenshots/300x300 centerInside @2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x300 centerInside @2x.png -------------------------------------------------------------------------------- /sample/screenshots/300x300 centerInside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x300 centerInside.png -------------------------------------------------------------------------------- /sample/screenshots/300x600 centerInside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/300x600 centerInside.png -------------------------------------------------------------------------------- /sample/screenshots/600x300 centerInside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/600x300 centerInside.png -------------------------------------------------------------------------------- /sample/screenshots/9squares-AlBoardman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/9squares-AlBoardman.png -------------------------------------------------------------------------------- /sample/screenshots/CircleForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/CircleForward.png -------------------------------------------------------------------------------- /sample/screenshots/CircleReversed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/CircleReversed.png -------------------------------------------------------------------------------- /sample/screenshots/EmptyState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/EmptyState.png -------------------------------------------------------------------------------- /sample/screenshots/Frame 16 Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Frame 16 Red.png -------------------------------------------------------------------------------- /sample/screenshots/Frame 17 Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Frame 17 Blue.png -------------------------------------------------------------------------------- /sample/screenshots/Frame 50 Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Frame 50 Blue.png -------------------------------------------------------------------------------- /sample/screenshots/Frame 51 Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Frame 51 Green.png -------------------------------------------------------------------------------- /sample/screenshots/HamburgerArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/HamburgerArrow.png -------------------------------------------------------------------------------- /sample/screenshots/Hello_World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Hello_World.png -------------------------------------------------------------------------------- /sample/screenshots/LottieLogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/LottieLogo1.png -------------------------------------------------------------------------------- /sample/screenshots/LottieLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/LottieLogo2.png -------------------------------------------------------------------------------- /sample/screenshots/Match Parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Match Parent.png -------------------------------------------------------------------------------- /sample/screenshots/MotionCorpse-Jrcanest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/MotionCorpse-Jrcanest.png -------------------------------------------------------------------------------- /sample/screenshots/Name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Name.png -------------------------------------------------------------------------------- /sample/screenshots/PinJump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/PinJump.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_CheckSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_CheckSwitch.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Fill.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_GradientFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_GradientFill.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_KeyframeTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_KeyframeTypes.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Laugh4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Laugh4.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_LoopPlayOnce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_LoopPlayOnce.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_MaskInv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_MaskInv.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_MatteTimeStretchLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_MatteTimeStretchLine.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_MatteTimeStretchScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_MatteTimeStretchScan.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Parenting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Parenting.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Precomps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Precomps.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Remap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Remap.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Repeater.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_ShapeTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_ShapeTypes.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_SplitDimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_SplitDimensions.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_Stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_Stroke.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_TextBaseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_TextBaseline.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_TimeStretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_TimeStretch.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_TimeStretchPrecomp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_TimeStretchPrecomp.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_TrackMattes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_TrackMattes.png -------------------------------------------------------------------------------- /sample/screenshots/Tests_TrimPaths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Tests_TrimPaths.png -------------------------------------------------------------------------------- /sample/screenshots/TwitterHeart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/TwitterHeart.png -------------------------------------------------------------------------------- /sample/screenshots/WeAccept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/WeAccept.png -------------------------------------------------------------------------------- /sample/screenshots/Wrap Content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/Wrap Content.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_ATM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_ATM.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Beating_Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Beating_Heart.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Camera.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Emoji_Shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Emoji_Shock.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Emoji_Tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Emoji_Tongue.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Emoji_Wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Emoji_Wink.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Favorite_Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Favorite_Star.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Gears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Gears.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Im_Thirsty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Im_Thirsty.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Loading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Loading_1.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Loading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Loading_2.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Loading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Loading_3.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Loading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Loading_4.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Mail_Sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Mail_Sent.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Permission.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Play_and_Like_It.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Play_and_Like_It.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Postcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Postcard.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Preloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Preloader.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Progress_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Progress_Success.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Retweet.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Star_Wars_Rey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Star_Wars_Rey.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Tadah_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Tadah_Image.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Tadah_Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Tadah_Video.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Touch_ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Touch_ID.png -------------------------------------------------------------------------------- /sample/screenshots/lottiefiles.com_-_Video_Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/lottiefiles.com_-_Video_Camera.png -------------------------------------------------------------------------------- /sample/screenshots/null_color_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/null_color_filter.png -------------------------------------------------------------------------------- /sample/screenshots/same_composition_first_run_PinJump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/same_composition_first_run_PinJump.png -------------------------------------------------------------------------------- /sample/screenshots/same_composition_second_run_PinJump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/same_composition_second_run_PinJump.png -------------------------------------------------------------------------------- /sample/screenshots/test_changing_compositions_PinJump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/test_changing_compositions_PinJump.png -------------------------------------------------------------------------------- /sample/screenshots/yellow_color_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/screenshots/yellow_color_filter.png -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/assets/AndroidWave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/assets/AndroidWave.json -------------------------------------------------------------------------------- /sample/src/main/assets/HamburgerArrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/assets/HamburgerArrow.json -------------------------------------------------------------------------------- /sample/src/main/assets/Lottie Logo 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/assets/Lottie Logo 1.json -------------------------------------------------------------------------------- /sample/src/main/assets/Lottie Logo 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/assets/Lottie Logo 2.json -------------------------------------------------------------------------------- /sample/src/main/assets/fonts/Comic Neue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/assets/fonts/Comic Neue.ttf -------------------------------------------------------------------------------- /sample/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/airbnb/lottie/samples/TrimView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/kotlin/com/airbnb/lottie/samples/TrimView.kt -------------------------------------------------------------------------------- /sample/src/main/res/anim/hold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/anim/hold.xml -------------------------------------------------------------------------------- /sample/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /sample/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /sample/src/main/res/color/bottom_bar_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/color/bottom_bar_label.xml -------------------------------------------------------------------------------- /sample/src/main/res/color/inverted_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/color/inverted_text.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable-nodpi/get_it_on_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable-nodpi/get_it_on_play.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-nodpi/lottiefiles_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable-nodpi/lottiefiles_logo.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-nodpi/lottiefiles_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable-nodpi/lottiefiles_screen.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/gilbert_animated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable-xxxhdpi/gilbert_animated.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable/bottom_bar_tint_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/bottom_bar_tint_list.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_assets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_assets.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_assets_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_assets_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_assets_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_assets_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_back_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_back_black.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_back_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_back_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_border_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_border_off.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_border_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_border_on.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_chart.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_color.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_content_cut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_content_cut.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_device.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_eye_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_eye_black.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_eye_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_eye_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_eye_teal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_eye_teal.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_eye_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_eye_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_fast_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_fast_forward.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_file.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_file_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_file_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_file_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_file_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_info_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_info_outline.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_invert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_invert.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_invert_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_invert_black.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_invert_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_invert_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_layers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_layers.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_learn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_learn.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_loop.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_loop_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_loop_disabled.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_loop_enabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_loop_enabled.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_lottiefiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_lottiefiles.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_memory.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_merge_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_merge_paths.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_more_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_more_vert.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_more_vert_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_more_vert_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_more_vert_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_more_vert_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_nav_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_nav_close.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_nav_close_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_nav_close_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_nav_close_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_nav_close_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_network.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_network_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_network_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_network_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_network_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_pause.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_play.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_play_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_play_pause.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_qr_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_qr_overlay.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_qr_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_qr_scan.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_qr_scan_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_qr_scan_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_qr_scan_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_qr_scan_white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_sentiment_dissatisfied.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_sentiment_dissatisfied.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_sentiment_satisfied.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_sentiment_satisfied.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_show_masks_and_mattes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_show_masks_and_mattes.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_showcase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_showcase.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_trim.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_view.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_warning_wrapped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/ic_warning_wrapped.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/inverted_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/inverted_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/outline.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/outline_inverted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/outline_inverted.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/outline_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/outline_normal.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/play_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/play_button_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/showcase_preview_lottie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/showcase_preview_lottie.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/tab_bar_underline_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/drawable/tab_bar_underline_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/auto_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/auto_play.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/auto_play_gone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/auto_play_gone.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/base_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/base_fragment.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/bottom_sheet_key_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/bottom_sheet_key_paths.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/bottom_sheet_render_times.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/bottom_sheet_render_times.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/bottom_sheet_warnings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/bottom_sheet_warnings.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/bullseye_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/bullseye_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/control_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/control_bar.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/control_bar_background_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/control_bar_background_color.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/control_bar_player_controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/control_bar_player_controls.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/control_bar_speed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/control_bar_speed.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/control_bar_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/control_bar_trim.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/dynamic_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/dynamic_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/dynamic_text_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/dynamic_text_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/empty_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/empty_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/epoxy_recycler_view_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/epoxy_recycler_view_fragment.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/item_view_bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/item_view_bottom_sheet.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/item_view_control_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/item_view_control_bar.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/list_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/list_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/list_item_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/list_item_preview.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/listing_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/listing_card.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/lottie_activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/lottie_activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/lottiefiles_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/lottiefiles_fragment.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/main_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/marquee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/marquee.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/no_auto_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/no_auto_play.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/pager_item_app_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/pager_item_app_intro.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/player_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/player_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/player_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/player_fragment.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/qrscan_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/qrscan_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/simple_animation_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/simple_animation_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/tab_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/tab_item.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/typography_demo_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/layout/typography_demo_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/menu/bottom_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/menu/bottom_bar.xml -------------------------------------------------------------------------------- /sample/src/main/res/menu/fragment_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/menu/fragment_player.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/raw/bullseye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/bullseye.json -------------------------------------------------------------------------------- /sample/src/main/res/raw/full_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/full_screen.json -------------------------------------------------------------------------------- /sample/src/main/res/raw/hamburger_arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/hamburger_arrow.json -------------------------------------------------------------------------------- /sample/src/main/res/raw/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/heart.json -------------------------------------------------------------------------------- /sample/src/main/res/raw/lottielogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/lottielogo.json -------------------------------------------------------------------------------- /sample/src/main/res/raw/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/name.json -------------------------------------------------------------------------------- /sample/src/main/res/raw/walkthrough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/raw/walkthrough.json -------------------------------------------------------------------------------- /sample/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /sample/src/main/res/values-v27/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values-v27/styles.xml -------------------------------------------------------------------------------- /sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sample/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /sample/src/release/java/com/airbnb/lotte/samples/Lotte.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/settings.gradle -------------------------------------------------------------------------------- /sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/sign.sh -------------------------------------------------------------------------------- /snapshot-tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/build.gradle -------------------------------------------------------------------------------- /snapshot-tests/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/AndroidWave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/AndroidWave.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/HamburgerArrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/HamburgerArrow.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Images/Heart-1200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Images/Heart-1200.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Images/Heart-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Images/Heart-80.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Images/WeAccept/img_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Images/WeAccept/img_0.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Logo/LogoSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Logo/LogoSmall.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Lottie Logo 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Lottie Logo 1.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Lottie Logo 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Lottie Logo 2.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/A.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/Apostrophe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/Apostrophe.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/B.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/BlinkingCursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/BlinkingCursor.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/C.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/Colon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/Colon.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/Comma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/Comma.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/D.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/E.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/F.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/G.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/G.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/H.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/H.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/I.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/I.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/J.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/J.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/K.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/L.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/L.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/M.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/N.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/O.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/O.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/P.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/Q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/Q.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/R.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/S.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/T.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/T.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/U.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/V.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/V.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/W.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/W.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/X.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/X.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/Y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/Y.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Mobilo/Z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Mobilo/Z.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/2FrameAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/2FrameAnimation.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/2ParentsMatte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/2ParentsMatte.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Airbnb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Airbnb.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Airbnb400.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Airbnb400.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Airbnb800.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Airbnb800.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/AnimatedShadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/AnimatedShadow.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/AutoOrient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/AutoOrient.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/BeyondBounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/BeyondBounds.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/BounceEasings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/BounceEasings.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/BoxPosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/BoxPosition.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/CheckSwitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/CheckSwitch.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/DefaultLineJoinCap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/DefaultLineJoinCap.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Dynamic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Dynamic1.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Dynamic2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Dynamic2.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/DynamicGradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/DynamicGradient.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/DynamicText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/DynamicText.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/EditedColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/EditedColor.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/EllipseDirection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/EllipseDirection.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/EmbeddedFont.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/EmbeddedFont.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/EndFrame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/EndFrame.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Fill.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/FillBlur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/FillBlur.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Frame.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Framerate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Framerate.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/GradientFill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/GradientFill.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/GradientFillBlur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/GradientFillBlur.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/GradientOneColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/GradientOneColor.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/GradientStrokeBlur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/GradientStrokeBlur.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Heart.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/KeyframeTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/KeyframeTypes.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LargeComposition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LargeComposition.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LargeSquare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LargeSquare.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Laugh4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Laugh4.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_0.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_1.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_10.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_11.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_12.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_13.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_14.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_15.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_16.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_17.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_2.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_3.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_4.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_5.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_6.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_7.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_8.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LayerBlend_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LayerBlend_9.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/LoopPlayOnce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/LoopPlayOnce.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Marker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Marker.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/MaskA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/MaskA.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/MaskInv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/MaskInv.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/MaskNone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/MaskNone.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Masks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Masks.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/MissingEndValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/MissingEndValue.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/MiterLimit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/MiterLimit.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Multiline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Multiline.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/NullEndShape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/NullEndShape.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/OpacityStops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/OpacityStops.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Parenting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Parenting.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Polygon.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/PrecompBlur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/PrecompBlur.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Precomps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Precomps.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/RGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/RGB.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/RGBMarker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/RGBMarker.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect1.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect3.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect4.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect5.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect6.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect7.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect8.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Rect9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Rect9.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/ReducedMotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/ReducedMotion.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Remap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Remap.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Repeater.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/ReversedStar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/ReversedStar.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/RoundedCorners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/RoundedCorners.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/RoundedNonClosed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/RoundedNonClosed.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Scale0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Scale0.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/ShapeTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/ShapeTypes.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Shapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Shapes.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Skew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Skew.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/SplitDimensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/SplitDimensions.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/SplitPathTransform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/SplitPathTransform.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Squares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Squares.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/StarSkew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/StarSkew.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/StartEndFrame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/StartEndFrame.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/StaticShadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/StaticShadow.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Stroke.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/StrokeBlur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/StrokeBlur.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/SzFont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/SzFont.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/SzGlyph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/SzGlyph.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Text.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TextBaseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TextBaseline.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TextWithPsCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TextWithPsCenter.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TextWithPsLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TextWithPsLeft.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TgsWithoutOpacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TgsWithoutOpacity.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/Thumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/Thumb.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TimeStretch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TimeStretch.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TimeStretchMask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TimeStretchMask.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TimeStretchPrecomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TimeStretchPrecomp.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TrackMattes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TrackMattes.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TrimPathWrapAround.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TrimPathWrapAround.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/TrimPaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/TrimPaths.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/WeAccept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/WeAccept.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/ZipInlineImage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/ZipInlineImage.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/adrock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/adrock.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/adrock_converted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/adrock_converted.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/anim_jpg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/anim_jpg.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/august_view_pulse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/august_view_pulse.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/bm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/bm.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/bm_converted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/bm_converted.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/catrim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/catrim.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/catrim_converted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/catrim_converted.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/dalek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/dalek.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/dalek_converted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/dalek_converted.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/exported_with_flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/exported_with_flow.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/hd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/hd.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/map.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/map.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/rect2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/rect2.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/Tests/winners.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/Tests/winners.tgs -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/fonts/Comic Neue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/fonts/Comic Neue.ttf -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/fonts/Helvetica Neue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/fonts/Helvetica Neue.ttf -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/fonts/Helvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/fonts/Helvetica.ttf -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/fonts/Open Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/fonts/Open Sans.ttf -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/fonts/PT Serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/fonts/PT Serif.ttf -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/100_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/100_percent.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/Plane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/Plane.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/___.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/___.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/a_mountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/a_mountain.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/angel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/angel.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/anima.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/anima.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/atm_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/atm_link.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/ball_&_map.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/ball_&_map.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/bb8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/bb8.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/bell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/bell.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/birds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/birds.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/bomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/bomb.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/books.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/bootymovin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/bootymovin.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/brain__.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/brain__.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/browser.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/camera.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/camptravel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/camptravel.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/cash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/cash.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/check_pop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/check_pop.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/chinese.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/clock.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/coding_ape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/coding_ape.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/coinfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/coinfall.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/colorline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/colorline.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/confusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/confusion.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/cooking_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/cooking_app.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/countdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/countdown.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/credit_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/credit_card.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/credit_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/credit_level.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/cube_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/cube_loader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/cubo_livre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/cubo_livre.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/deadpool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/deadpool.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/delivery_van.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/delivery_van.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/dna_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/dna_loader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/dog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/dog.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/done.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/download.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/downloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/downloader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/drop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/drop.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/emoji_shock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/emoji_shock.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/emoji_tongue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/emoji_tongue.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/emoji_wink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/emoji_wink.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/empty_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/empty_status.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/estimate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/estimate.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/fab_animate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/fab_animate.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/file_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/file_error.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/finish,done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/finish,done.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/fish.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/flow.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/frog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/frog.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/gaming_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/gaming_pad.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/gears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/gears.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/geometry.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/geometry.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/glow_loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/glow_loading.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/hardware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/hardware.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/hindi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/hindi.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/hint_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/hint_01.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/i'm_thirsty!.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/i'm_thirsty!.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/immiguide_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/immiguide_.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/india.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/india.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/jolly_walker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/jolly_walker.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/judgement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/judgement.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/la_calavera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/la_calavera.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/landing_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/landing_page.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/lego_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/lego_loader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/light.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/lightsaber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/lightsaber.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/loading copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/loading copy.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/loading disc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/loading disc.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/loading.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/location.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/location_pin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/location_pin.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/mailsent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/mailsent.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/me_at_office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/me_at_office.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/medal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/medal.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/menuButton2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/menuButton2.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/mindful.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/mindful.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/mnemonics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/mnemonics.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/money.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/money.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/motorcycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/motorcycle.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/moving bus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/moving bus.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/moving_eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/moving_eye.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/octopus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/octopus.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/ofrenda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/ofrenda.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/pagado.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/pagado.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/pagination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/pagination.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/panel2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/panel2d.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/passport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/passport.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/payme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/payme.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/peli-canon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/peli-canon.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/pencil_write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/pencil_write.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/penguin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/penguin.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/permission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/permission.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/phonological.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/phonological.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/play,_pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/play,_pause.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/play_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/play_button.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/playing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/playing.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/point.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/poo_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/poo_loader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/preloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/preloader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/print.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/print.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/progress_bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/progress_bar.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/rating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/rating.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/rejection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/rejection.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/retweet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/retweet.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/rocket.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/scan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/scan.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/sensor_scan.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/sensor_scan.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/sky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/sky.zip -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/snowcation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/snowcation.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/socar_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/socar_logo.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/soda_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/soda_loader.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/spacehub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/spacehub.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/star 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/star 2.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/summer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/summer.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/swipe_menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/swipe_menu.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/switch_loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/switch_loop.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/toggle.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/touch_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/touch_id.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/tractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/tractor.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/trophy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/trophy.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/truecosmos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/truecosmos.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/turbine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/turbine.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/typing dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/typing dot.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/uk.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/updating_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/updating_map.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/us.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/video_cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/video_cam.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/vr_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/vr_animation.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/vr_sickness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/vr_sickness.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/walking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/walking.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/wolf_peek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/wolf_peek.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/assets/lottiefiles/x_pop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/assets/lottiefiles/x_pop.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/color/test_color_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/color/test_color_filter.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/drawable-nodpi/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/drawable-nodpi/airbnb.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/layout/clip_children.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/layout/clip_children.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/layout/film_strip_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/layout/film_strip_view.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/layout/seek_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/layout/seek_bar.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/layout/test_color_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/layout/test_color_filter.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/raw-night/day_night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/raw-night/day_night.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/raw/day_night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/raw/day_night.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/raw/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/raw/heart.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/raw/isrgrootx1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/raw/isrgrootx1.der -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/raw/solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/raw/solid.json -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /snapshot-tests/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/snapshot-tests/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /update-baseline-profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/update-baseline-profiles.sh -------------------------------------------------------------------------------- /upload_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/upload_release.sh -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/version.sh -------------------------------------------------------------------------------- /versions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/lottie-android/HEAD/versions.properties --------------------------------------------------------------------------------