lottie-ios 3.4.4 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +1 -0
- package/.github/workflows/main.yml +7 -7
- package/Gemfile.lock +1 -1
- package/Lottie.xcodeproj/project.pbxproj +286 -68
- package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +18 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +3 -24
- package/Package.swift +2 -2
- package/README.md +10 -3
- package/Rakefile +1 -1
- package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +6 -9
- package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +42 -3
- package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +5 -17
- package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +25 -17
- package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +2 -2
- package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +1 -1
- package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +9 -20
- package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +39 -25
- package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +13 -32
- package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +4 -4
- package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +13 -13
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +4 -4
- package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +4 -12
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +222 -0
- package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +1 -1
- package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +8 -6
- package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +13 -10
- package/Sources/Private/CoreAnimation/Layers/InfiniteOpaqueAnimationLayer.swift +56 -0
- package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -1
- package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +2 -3
- package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +9 -9
- package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +9 -3
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +7 -18
- package/Sources/Private/CoreAnimation/ValueProviderStore.swift +2 -3
- package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +5 -5
- package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +3 -3
- package/Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift +2 -2
- package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +7 -6
- package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -3
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +10 -10
- package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +7 -0
- package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +2 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/RoundedCornersNode.swift +85 -0
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +4 -4
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +11 -12
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +1 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +10 -11
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +1 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +2 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +5 -5
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +3 -3
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +9 -9
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +14 -14
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +2 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +3 -3
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +10 -10
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +14 -14
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +11 -11
- package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +1 -1
- package/Sources/Private/Model/DotLottie/DotLottieAnimation.swift +52 -0
- package/Sources/Private/Model/DotLottie/DotLottieConfiguration.swift +15 -0
- package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +73 -0
- package/Sources/Private/Model/DotLottie/DotLottieManifest.swift +53 -0
- package/Sources/Private/Model/DotLottie/DotLottieUtils.swift +58 -0
- package/Sources/Private/Model/DotLottie/Zip/Data+Compression.swift +134 -0
- package/Sources/Private/Model/DotLottie/Zip/Data+Serialization.swift +87 -0
- package/Sources/Private/Model/DotLottie/Zip/FileManager+ZIP.swift +130 -0
- package/Sources/Private/Model/DotLottie/Zip/ZipArchive.swift +474 -0
- package/Sources/Private/Model/DotLottie/Zip/ZipEntry+Serialization.swift +189 -0
- package/Sources/Private/Model/DotLottie/Zip/ZipEntry+ZIP64.swift +179 -0
- package/Sources/Private/Model/DotLottie/Zip/ZipEntry.swift +227 -0
- package/Sources/Private/Model/Extensions/Bundle.swift +26 -0
- package/Sources/Private/Model/Keyframes/KeyframeData.swift +12 -12
- package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +9 -2
- package/Sources/Private/Model/Layers/LayerModel.swift +1 -1
- package/Sources/Private/Model/Layers/PreCompLayerModel.swift +3 -3
- package/Sources/Private/Model/Layers/TextLayerModel.swift +1 -1
- package/Sources/Private/Model/Objects/DashPattern.swift +2 -2
- package/Sources/Private/Model/Objects/Mask.swift +10 -8
- package/Sources/Private/Model/Objects/Transform.swift +39 -35
- package/Sources/Private/Model/ShapeItems/Ellipse.swift +6 -6
- package/Sources/Private/Model/ShapeItems/Fill.swift +6 -6
- package/Sources/Private/Model/ShapeItems/GradientFill.swift +15 -15
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +19 -19
- package/Sources/Private/Model/ShapeItems/Rectangle.swift +9 -9
- package/Sources/Private/Model/ShapeItems/Repeater.swift +37 -32
- package/Sources/Private/Model/ShapeItems/RoundedCorners.swift +47 -0
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +4 -0
- package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +34 -28
- package/Sources/Private/Model/ShapeItems/Star.swift +21 -21
- package/Sources/Private/Model/ShapeItems/Stroke.swift +10 -10
- package/Sources/Private/Model/ShapeItems/Trim.swift +9 -9
- package/Sources/Private/Model/Text/Font.swift +1 -1
- package/Sources/Private/Model/Text/TextAnimator.swift +33 -33
- package/Sources/Private/Model/Text/TextDocument.swift +8 -8
- package/Sources/Private/RootAnimationLayer.swift +4 -4
- package/Sources/Private/Utility/Debugging/LayerDebugging.swift +12 -18
- package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +2 -2
- package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +12 -7
- package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +1 -1
- package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +4 -4
- package/Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift +147 -0
- package/Sources/Private/Utility/Primitives/ColorExtension.swift +8 -11
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +22 -22
- package/Sources/{Private/Model/Animation.swift → Public/Animation/LottieAnimation.swift} +8 -8
- package/Sources/Public/Animation/{AnimationPublic.swift → LottieAnimationHelpers.swift} +62 -27
- package/Sources/Public/Animation/{AnimationView.swift → LottieAnimationView.swift} +122 -26
- package/Sources/Public/Animation/LottieAnimationViewInitializers.swift +222 -0
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +4 -4
- package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +54 -0
- package/Sources/Public/AnimationCache/LRUAnimationCache.swift +4 -52
- package/Sources/Public/AnimationCache/LottieAnimationCache.swift +15 -0
- package/Sources/Public/DotLottie/Cache/DotLottieCache.swift +53 -0
- package/Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift +23 -0
- package/Sources/Public/DotLottie/DotLottieFile.swift +161 -0
- package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +265 -0
- package/Sources/Public/DynamicProperties/AnimationKeypath.swift +3 -3
- package/Sources/Public/DynamicProperties/AnyValueProvider.swift +2 -2
- package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +10 -10
- package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +4 -4
- package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +5 -5
- package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +2 -2
- package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +2 -2
- package/Sources/Public/FontProvider/AnimationFontProvider.swift +1 -1
- package/Sources/Public/ImageProvider/AnimationImageProvider.swift +2 -2
- package/Sources/Public/Keyframes/Interpolatable.swift +17 -17
- package/Sources/Public/Keyframes/Keyframe.swift +10 -10
- package/Sources/Public/LottieConfiguration.swift +25 -7
- package/Sources/Public/Primitives/{Color.swift → LottieColor.swift} +3 -3
- package/Sources/Public/Primitives/Vectors.swift +4 -4
- package/Sources/Public/TextProvider/AnimationTextProvider.swift +1 -1
- package/Sources/Public/iOS/AnimatedButton.swift +1 -1
- package/Sources/Public/iOS/AnimatedControl.swift +6 -6
- package/Sources/Public/iOS/AnimatedSwitch.swift +1 -1
- package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +8 -8
- package/Sources/Public/iOS/{AnimationViewBase.swift → LottieAnimationViewBase.swift} +4 -4
- package/Sources/Public/iOS/UIColorExtension.swift +2 -2
- package/Sources/Public/macOS/{AnimationViewBase.macOS.swift → LottieAnimationViewBase.macOS.swift} +4 -4
- package/Tests/AnimationCacheProviderTests.swift +40 -0
- package/Tests/AnimationKeypathTests.swift +20 -13
- package/Tests/AnimationViewTests.swift +64 -0
- package/Tests/AutomaticEngineTests.swift +11 -2
- package/Tests/ParsingTests.swift +4 -2
- package/Tests/PerformanceTests.swift +9 -9
- package/Tests/SnapshotConfiguration.swift +7 -7
- package/Tests/SnapshotTests.swift +57 -27
- package/Tests/ValueProvidersTests.swift +9 -6
- package/lottie-ios.podspec +4 -4
- package/package.json +2 -2
- package/script/test-carthage/Cartfile +1 -1
- package/script/test-carthage/CarthageTest/ViewController.swift +1 -1
- package/script/test-carthage/CarthageTest-macOS/ViewController.swift +1 -1
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +0 -154
- package/Sources/Public/Animation/AnimationViewInitializers.swift +0 -109
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -1
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~7IO4FqH8-VUsSfuA0_wMGUgfGdV7MwzpkzjwWbiB50jXZKQRHtU4G0A7ZXTvsR4mDdrWiawpNC_eriOALfZ7Og== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ClRW5-6rvrgZHHbrPS1VEREaxelpVcKlERPzSa3f2rtFNXdoqATxFCsPge3a_nO4mhhtpmTmbYvyfI-obAu8Qg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Jr2dFGcJc1188nMoMha82z9wM99lCLm4MKzhjfVVjIxKeCZVGWGZH3HgJFNkTpozdk5p1u5o91dCiY4-cR1Zhg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~MBDeCFoahVzzmtSQrVhhy9VMJV6CmcnUkFya_qwe0XsMFscmY2nS8dxrTEYkY16sH68sEH7WVCCzTuW1z1Hocw== +0 -1
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~U4plJajEDM_uSZdglhDyj6gQO63mbeKxYP9X94aIaOtL0yErtfQnGz5SgsqQ0ToSZcJj6Ao9Wx-nesZVwBTRuw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~UsLY5O-vDMEHEe3bF8XJvkKkYxdsKlIytgJW7zgNuetw53fG3SssfZiiMfbuYnOtvvvYBXTwpbz07V6Czp029Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cpg4cb7H0TaehHy4a-xINJMFfBM2_AEHal_0tIX8ymNVJPsjlCysi3-Cad0Ca_SvuGwVM7ONF55OBUuC9YKZvA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cuHjdTCuciVumvEpvozxwDj2wAdgWe13bzd1pUAGN45-WOgY0kIid9aUlBX675OnS-xNEc_pyQWo0RO1dKAjcw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~f_-bfn-KRHHFg39_MtwgBulEAuWH6F05yqGYydXhil6kqZ51eAoRX6tsiqOr0Oa6eL3dK1tcCBD1bWX5orCZhw== +0 -1
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~jdIx7vWS6ej1cqYcbCS4KyZErSMF13ELR95YwClVc98tIXcsglh7KuGvI1gIxEPDtPXQpfC3XijIAGn1quL8Dw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~lz3e0YeBa8TvMBSSymToh--gc6zznUIdH2jO0AJ4so5OPNdw6wpYmJebhaENGsRoD3beUXvlyD5f7_WeZrzyNQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~u_5dWbliYJ__YkyUCDFjdxiFds9M8Epr_RvbU1rIRCbBQdhRJ_TUBXXcL_Qq-wVp4umNLTOzud4OpQItSpO6Rg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~v-YGzhC2l_icsAsyp1XAbEWYwxNook-rARAWlVZINioEsgT9LGvhg2oh78nYqoeH78m1fihr5HCcGNfF7SQj0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~7IO4FqH8-VUsSfuA0_wMGUgfGdV7MwzpkzjwWbiB50jXZKQRHtU4G0A7ZXTvsR4mDdrWiawpNC_eriOALfZ7Og== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ClRW5-6rvrgZHHbrPS1VEREaxelpVcKlERPzSa3f2rtFNXdoqATxFCsPge3a_nO4mhhtpmTmbYvyfI-obAu8Qg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Jr2dFGcJc1188nMoMha82z9wM99lCLm4MKzhjfVVjIxKeCZVGWGZH3HgJFNkTpozdk5p1u5o91dCiY4-cR1Zhg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~MBDeCFoahVzzmtSQrVhhy9VMJV6CmcnUkFya_qwe0XsMFscmY2nS8dxrTEYkY16sH68sEH7WVCCzTuW1z1Hocw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~U4plJajEDM_uSZdglhDyj6gQO63mbeKxYP9X94aIaOtL0yErtfQnGz5SgsqQ0ToSZcJj6Ao9Wx-nesZVwBTRuw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~UsLY5O-vDMEHEe3bF8XJvkKkYxdsKlIytgJW7zgNuetw53fG3SssfZiiMfbuYnOtvvvYBXTwpbz07V6Czp029Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cpg4cb7H0TaehHy4a-xINJMFfBM2_AEHal_0tIX8ymNVJPsjlCysi3-Cad0Ca_SvuGwVM7ONF55OBUuC9YKZvA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cuHjdTCuciVumvEpvozxwDj2wAdgWe13bzd1pUAGN45-WOgY0kIid9aUlBX675OnS-xNEc_pyQWo0RO1dKAjcw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~f_-bfn-KRHHFg39_MtwgBulEAuWH6F05yqGYydXhil6kqZ51eAoRX6tsiqOr0Oa6eL3dK1tcCBD1bWX5orCZhw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~jdIx7vWS6ej1cqYcbCS4KyZErSMF13ELR95YwClVc98tIXcsglh7KuGvI1gIxEPDtPXQpfC3XijIAGn1quL8Dw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~lz3e0YeBa8TvMBSSymToh--gc6zznUIdH2jO0AJ4so5OPNdw6wpYmJebhaENGsRoD3beUXvlyD5f7_WeZrzyNQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~u_5dWbliYJ__YkyUCDFjdxiFds9M8Epr_RvbU1rIRCbBQdhRJ_TUBXXcL_Qq-wVp4umNLTOzud4OpQItSpO6Rg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~v-YGzhC2l_icsAsyp1XAbEWYwxNook-rARAWlVZINioEsgT9LGvhg2oh78nYqoeH78m1fihr5HCcGNfF7SQj0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Info.plist +0 -29
|
@@ -7,6 +7,22 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
+
0887346F28F0CBDE00458627 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887346E28F0CBDE00458627 /* LottieAnimation.swift */; };
|
|
11
|
+
0887347028F0CBDE00458627 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887346E28F0CBDE00458627 /* LottieAnimation.swift */; };
|
|
12
|
+
0887347128F0CBDE00458627 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887346E28F0CBDE00458627 /* LottieAnimation.swift */; };
|
|
13
|
+
0887347528F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */; };
|
|
14
|
+
0887347628F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */; };
|
|
15
|
+
0887347728F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */; };
|
|
16
|
+
0887347828F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */; };
|
|
17
|
+
0887347928F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */; };
|
|
18
|
+
0887347A28F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */; };
|
|
19
|
+
0887347B28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
|
|
20
|
+
0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
|
|
21
|
+
0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
|
|
22
|
+
08CB2681291ED2B700B4F071 /* AnimationViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08CB2680291ED2B700B4F071 /* AnimationViewTests.swift */; };
|
|
23
|
+
08EED05028F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
|
|
24
|
+
08EED05128F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
|
|
25
|
+
08EED05228F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
|
|
10
26
|
08EF21DC289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */; };
|
|
11
27
|
08EF21DD289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */; };
|
|
12
28
|
08EF21DE289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */; };
|
|
@@ -15,6 +31,9 @@
|
|
|
15
31
|
08F8B20F2898A7B100CB5323 /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */; };
|
|
16
32
|
08F8B211289990B700CB5323 /* Samples in Resources */ = {isa = PBXBuildFile; fileRef = 08F8B210289990B700CB5323 /* Samples */; };
|
|
17
33
|
08F8B213289990CB00CB5323 /* SnapshotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F8B212289990CB00CB5323 /* SnapshotTests.swift */; };
|
|
34
|
+
08FE934E28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */; };
|
|
35
|
+
08FE934F28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */; };
|
|
36
|
+
08FE935028F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */; };
|
|
18
37
|
19465F52282F998B00BB2C97 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19465F51282F998B00BB2C97 /* CachedImageProvider.swift */; };
|
|
19
38
|
19465F53282F998B00BB2C97 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19465F51282F998B00BB2C97 /* CachedImageProvider.swift */; };
|
|
20
39
|
19465F54282F998B00BB2C97 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19465F51282F998B00BB2C97 /* CachedImageProvider.swift */; };
|
|
@@ -91,9 +110,6 @@
|
|
|
91
110
|
2E9C960C2822F43100677516 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95392822F43000677516 /* ShapeLayerModel.swift */; };
|
|
92
111
|
2E9C960D2822F43100677516 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95392822F43000677516 /* ShapeLayerModel.swift */; };
|
|
93
112
|
2E9C960E2822F43100677516 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95392822F43000677516 /* ShapeLayerModel.swift */; };
|
|
94
|
-
2E9C960F2822F43100677516 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953A2822F43000677516 /* Animation.swift */; };
|
|
95
|
-
2E9C96102822F43100677516 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953A2822F43000677516 /* Animation.swift */; };
|
|
96
|
-
2E9C96112822F43100677516 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953A2822F43000677516 /* Animation.swift */; };
|
|
97
113
|
2E9C96122822F43100677516 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953C2822F43000677516 /* DashPattern.swift */; };
|
|
98
114
|
2E9C96132822F43100677516 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953C2822F43000677516 /* DashPattern.swift */; };
|
|
99
115
|
2E9C96142822F43100677516 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953C2822F43000677516 /* DashPattern.swift */; };
|
|
@@ -346,9 +362,9 @@
|
|
|
346
362
|
2E9C970E2822F43100677516 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */; };
|
|
347
363
|
2E9C970F2822F43100677516 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */; };
|
|
348
364
|
2E9C97102822F43100677516 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */; };
|
|
349
|
-
2E9C97112822F43100677516 /* Keyframes+
|
|
350
|
-
2E9C97122822F43100677516 /* Keyframes+
|
|
351
|
-
2E9C97132822F43100677516 /* Keyframes+
|
|
365
|
+
2E9C97112822F43100677516 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AB2822F43100677516 /* Keyframes+combined.swift */; };
|
|
366
|
+
2E9C97122822F43100677516 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AB2822F43100677516 /* Keyframes+combined.swift */; };
|
|
367
|
+
2E9C97132822F43100677516 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AB2822F43100677516 /* Keyframes+combined.swift */; };
|
|
352
368
|
2E9C97142822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */; };
|
|
353
369
|
2E9C97152822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */; };
|
|
354
370
|
2E9C97162822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */; };
|
|
@@ -449,9 +465,9 @@
|
|
|
449
465
|
2EAF5A9B27A0798700E00531 /* BundleImageProvider.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */; };
|
|
450
466
|
2EAF5A9C27A0798700E00531 /* BundleImageProvider.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */; };
|
|
451
467
|
2EAF5A9D27A0798700E00531 /* BundleImageProvider.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */; };
|
|
452
|
-
2EAF5A9E27A0798700E00531 /*
|
|
453
|
-
2EAF5A9F27A0798700E00531 /*
|
|
454
|
-
2EAF5AA027A0798700E00531 /*
|
|
468
|
+
2EAF5A9E27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */; };
|
|
469
|
+
2EAF5A9F27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */; };
|
|
470
|
+
2EAF5AA027A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */; };
|
|
455
471
|
2EAF5AA127A0798700E00531 /* AnimationSubview.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */; };
|
|
456
472
|
2EAF5AA227A0798700E00531 /* AnimationSubview.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */; };
|
|
457
473
|
2EAF5AA327A0798700E00531 /* AnimationSubview.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */; };
|
|
@@ -461,15 +477,6 @@
|
|
|
461
477
|
2EAF5AA727A0798700E00531 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C727A0798700E00531 /* LottieConfiguration.swift */; };
|
|
462
478
|
2EAF5AA827A0798700E00531 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C727A0798700E00531 /* LottieConfiguration.swift */; };
|
|
463
479
|
2EAF5AA927A0798700E00531 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C727A0798700E00531 /* LottieConfiguration.swift */; };
|
|
464
|
-
2EAF5AAA27A0798700E00531 /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */; };
|
|
465
|
-
2EAF5AAB27A0798700E00531 /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */; };
|
|
466
|
-
2EAF5AAC27A0798700E00531 /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */; };
|
|
467
|
-
2EAF5AAD27A0798700E00531 /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CA27A0798700E00531 /* AnimationView.swift */; };
|
|
468
|
-
2EAF5AAE27A0798700E00531 /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CA27A0798700E00531 /* AnimationView.swift */; };
|
|
469
|
-
2EAF5AAF27A0798700E00531 /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CA27A0798700E00531 /* AnimationView.swift */; };
|
|
470
|
-
2EAF5AB027A0798700E00531 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */; };
|
|
471
|
-
2EAF5AB127A0798700E00531 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */; };
|
|
472
|
-
2EAF5AB227A0798700E00531 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */; };
|
|
473
480
|
2EAF5AB327A0798700E00531 /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */; };
|
|
474
481
|
2EAF5AB427A0798700E00531 /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */; };
|
|
475
482
|
2EAF5AB527A0798700E00531 /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */; };
|
|
@@ -494,9 +501,9 @@
|
|
|
494
501
|
2EAF5AC827A0798700E00531 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D627A0798700E00531 /* AnimatedButton.swift */; };
|
|
495
502
|
2EAF5AC927A0798700E00531 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D627A0798700E00531 /* AnimatedButton.swift */; };
|
|
496
503
|
2EAF5ACA27A0798700E00531 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D627A0798700E00531 /* AnimatedButton.swift */; };
|
|
497
|
-
2EAF5ACB27A0798700E00531 /*
|
|
498
|
-
2EAF5ACC27A0798700E00531 /*
|
|
499
|
-
2EAF5ACD27A0798700E00531 /*
|
|
504
|
+
2EAF5ACB27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */; };
|
|
505
|
+
2EAF5ACC27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */; };
|
|
506
|
+
2EAF5ACD27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */; };
|
|
500
507
|
2EAF5ACE27A0798700E00531 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D827A0798700E00531 /* AnimationSubview.swift */; };
|
|
501
508
|
2EAF5ACF27A0798700E00531 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D827A0798700E00531 /* AnimationSubview.swift */; };
|
|
502
509
|
2EAF5AD027A0798700E00531 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D827A0798700E00531 /* AnimationSubview.swift */; };
|
|
@@ -509,9 +516,6 @@
|
|
|
509
516
|
2EAF5AD727A0798700E00531 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DC27A0798700E00531 /* Vectors.swift */; };
|
|
510
517
|
2EAF5AD827A0798700E00531 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DC27A0798700E00531 /* Vectors.swift */; };
|
|
511
518
|
2EAF5AD927A0798700E00531 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DC27A0798700E00531 /* Vectors.swift */; };
|
|
512
|
-
2EAF5ADA27A0798700E00531 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DD27A0798700E00531 /* Color.swift */; };
|
|
513
|
-
2EAF5ADB27A0798700E00531 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DD27A0798700E00531 /* Color.swift */; };
|
|
514
|
-
2EAF5ADC27A0798700E00531 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DD27A0798700E00531 /* Color.swift */; };
|
|
515
519
|
2EAF5ADD27A0798700E00531 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DF27A0798700E00531 /* Interpolatable.swift */; };
|
|
516
520
|
2EAF5ADE27A0798700E00531 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DF27A0798700E00531 /* Interpolatable.swift */; };
|
|
517
521
|
2EAF5ADF27A0798700E00531 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DF27A0798700E00531 /* Interpolatable.swift */; };
|
|
@@ -555,6 +559,63 @@
|
|
|
555
559
|
2EAF5B0527A0798700E00531 /* AnimationFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59F227A0798700E00531 /* AnimationFontProvider.swift */; };
|
|
556
560
|
2EAF5B0627A0798700E00531 /* AnimationFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59F227A0798700E00531 /* AnimationFontProvider.swift */; };
|
|
557
561
|
36E57EAC28AF7ADF00B7EFDA /* HardcodedTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36E57EAB28AF7ADF00B7EFDA /* HardcodedTextProvider.swift */; };
|
|
562
|
+
57210913291073E400169699 /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57210912291073E400169699 /* RoundedCorners.swift */; };
|
|
563
|
+
57210914291073E400169699 /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57210912291073E400169699 /* RoundedCorners.swift */; };
|
|
564
|
+
57210915291073E400169699 /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57210912291073E400169699 /* RoundedCorners.swift */; };
|
|
565
|
+
5721091B2910874A00169699 /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721091A2910874A00169699 /* RoundedCornersNode.swift */; };
|
|
566
|
+
5721091C2910874A00169699 /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721091A2910874A00169699 /* RoundedCornersNode.swift */; };
|
|
567
|
+
5721091D2910874A00169699 /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721091A2910874A00169699 /* RoundedCornersNode.swift */; };
|
|
568
|
+
5721091F29119F3100169699 /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721091E29119F3100169699 /* BezierPathRoundExtension.swift */; };
|
|
569
|
+
5721092029119F3100169699 /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721091E29119F3100169699 /* BezierPathRoundExtension.swift */; };
|
|
570
|
+
5721092129119F3100169699 /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721091E29119F3100169699 /* BezierPathRoundExtension.swift */; };
|
|
571
|
+
6C4877FF28FF20140005AF07 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E228FF20140005AF07 /* DotLottieAnimation.swift */; };
|
|
572
|
+
6C48780028FF20140005AF07 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E228FF20140005AF07 /* DotLottieAnimation.swift */; };
|
|
573
|
+
6C48780128FF20140005AF07 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E228FF20140005AF07 /* DotLottieAnimation.swift */; };
|
|
574
|
+
6C48780228FF20140005AF07 /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E328FF20140005AF07 /* DotLottieFile.swift */; };
|
|
575
|
+
6C48780328FF20140005AF07 /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E328FF20140005AF07 /* DotLottieFile.swift */; };
|
|
576
|
+
6C48780428FF20140005AF07 /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E328FF20140005AF07 /* DotLottieFile.swift */; };
|
|
577
|
+
6C48780528FF20140005AF07 /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E428FF20140005AF07 /* DotLottieUtils.swift */; };
|
|
578
|
+
6C48780628FF20140005AF07 /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E428FF20140005AF07 /* DotLottieUtils.swift */; };
|
|
579
|
+
6C48780728FF20140005AF07 /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877E428FF20140005AF07 /* DotLottieUtils.swift */; };
|
|
580
|
+
6C48784728FF20140005AF07 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877FB28FF20140005AF07 /* DotLottieManifest.swift */; };
|
|
581
|
+
6C48784828FF20140005AF07 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877FB28FF20140005AF07 /* DotLottieManifest.swift */; };
|
|
582
|
+
6C48784928FF20140005AF07 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4877FB28FF20140005AF07 /* DotLottieManifest.swift */; };
|
|
583
|
+
6C48784B29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48784A29008ACF0005AF07 /* DotLottieConfiguration.swift */; };
|
|
584
|
+
6C48784C29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48784A29008ACF0005AF07 /* DotLottieConfiguration.swift */; };
|
|
585
|
+
6C48784D29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48784A29008ACF0005AF07 /* DotLottieConfiguration.swift */; };
|
|
586
|
+
6C48785229017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785129017CBF0005AF07 /* DotLottieCacheProvider.swift */; };
|
|
587
|
+
6C48785329017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785129017CBF0005AF07 /* DotLottieCacheProvider.swift */; };
|
|
588
|
+
6C48785429017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785129017CBF0005AF07 /* DotLottieCacheProvider.swift */; };
|
|
589
|
+
6C48785629017D1D0005AF07 /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785529017D1D0005AF07 /* DotLottieCache.swift */; };
|
|
590
|
+
6C48785729017D1D0005AF07 /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785529017D1D0005AF07 /* DotLottieCache.swift */; };
|
|
591
|
+
6C48785A2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4878592901811D0005AF07 /* DotLottieFileHelpers.swift */; };
|
|
592
|
+
6C48785B2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4878592901811D0005AF07 /* DotLottieFileHelpers.swift */; };
|
|
593
|
+
6C48785C2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4878592901811D0005AF07 /* DotLottieFileHelpers.swift */; };
|
|
594
|
+
6C4878602901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785F2901D8C70005AF07 /* DotLottieImageProvider.swift */; };
|
|
595
|
+
6C4878612901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785F2901D8C70005AF07 /* DotLottieImageProvider.swift */; };
|
|
596
|
+
6C4878622901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785F2901D8C70005AF07 /* DotLottieImageProvider.swift */; };
|
|
597
|
+
6CC544932902FF7D00212722 /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C48785529017D1D0005AF07 /* DotLottieCache.swift */; };
|
|
598
|
+
6CFA107F290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA1078290B12B900873A98 /* ZipEntry+Serialization.swift */; };
|
|
599
|
+
6CFA1080290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA1078290B12B900873A98 /* ZipEntry+Serialization.swift */; };
|
|
600
|
+
6CFA1081290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA1078290B12B900873A98 /* ZipEntry+Serialization.swift */; };
|
|
601
|
+
6CFA1082290B12B900873A98 /* ZipArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA1079290B12B900873A98 /* ZipArchive.swift */; };
|
|
602
|
+
6CFA1083290B12B900873A98 /* ZipArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA1079290B12B900873A98 /* ZipArchive.swift */; };
|
|
603
|
+
6CFA1084290B12B900873A98 /* ZipArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA1079290B12B900873A98 /* ZipArchive.swift */; };
|
|
604
|
+
6CFA1085290B12B900873A98 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107A290B12B900873A98 /* Data+Compression.swift */; };
|
|
605
|
+
6CFA1086290B12B900873A98 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107A290B12B900873A98 /* Data+Compression.swift */; };
|
|
606
|
+
6CFA1087290B12B900873A98 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107A290B12B900873A98 /* Data+Compression.swift */; };
|
|
607
|
+
6CFA1088290B12B900873A98 /* ZipEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107B290B12B900873A98 /* ZipEntry.swift */; };
|
|
608
|
+
6CFA1089290B12B900873A98 /* ZipEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107B290B12B900873A98 /* ZipEntry.swift */; };
|
|
609
|
+
6CFA108A290B12B900873A98 /* ZipEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107B290B12B900873A98 /* ZipEntry.swift */; };
|
|
610
|
+
6CFA108B290B12B900873A98 /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107C290B12B900873A98 /* Data+Serialization.swift */; };
|
|
611
|
+
6CFA108C290B12B900873A98 /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107C290B12B900873A98 /* Data+Serialization.swift */; };
|
|
612
|
+
6CFA108D290B12B900873A98 /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107C290B12B900873A98 /* Data+Serialization.swift */; };
|
|
613
|
+
6CFA108E290B12B900873A98 /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107D290B12B900873A98 /* FileManager+ZIP.swift */; };
|
|
614
|
+
6CFA108F290B12B900873A98 /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107D290B12B900873A98 /* FileManager+ZIP.swift */; };
|
|
615
|
+
6CFA1090290B12B900873A98 /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107D290B12B900873A98 /* FileManager+ZIP.swift */; };
|
|
616
|
+
6CFA1091290B12B900873A98 /* ZipEntry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107E290B12B900873A98 /* ZipEntry+ZIP64.swift */; };
|
|
617
|
+
6CFA1092290B12B900873A98 /* ZipEntry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107E290B12B900873A98 /* ZipEntry+ZIP64.swift */; };
|
|
618
|
+
6CFA1093290B12B900873A98 /* ZipEntry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CFA107E290B12B900873A98 /* ZipEntry+ZIP64.swift */; };
|
|
558
619
|
6D0E635F28246BD0007C5DB6 /* Difference in Frameworks */ = {isa = PBXBuildFile; productRef = 6D0E635E28246BD0007C5DB6 /* Difference */; };
|
|
559
620
|
6D99D6432823790700E5205B /* LegacyGradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D99D6422823790700E5205B /* LegacyGradientFillRenderer.swift */; };
|
|
560
621
|
6D99D6442823790700E5205B /* LegacyGradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D99D6422823790700E5205B /* LegacyGradientFillRenderer.swift */; };
|
|
@@ -578,6 +639,13 @@
|
|
|
578
639
|
A40460592832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A40460582832C52B00ACFEDC /* BlendMode+Filter.swift */; };
|
|
579
640
|
A404605A2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A40460582832C52B00ACFEDC /* BlendMode+Filter.swift */; };
|
|
580
641
|
A404605B2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A40460582832C52B00ACFEDC /* BlendMode+Filter.swift */; };
|
|
642
|
+
D453D8AB28FE6EE300D3F49C /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8AA28FE6EE300D3F49C /* LottieAnimationCache.swift */; };
|
|
643
|
+
D453D8AC28FE6EE300D3F49C /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8AA28FE6EE300D3F49C /* LottieAnimationCache.swift */; };
|
|
644
|
+
D453D8AD28FE6EE300D3F49C /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8AA28FE6EE300D3F49C /* LottieAnimationCache.swift */; };
|
|
645
|
+
D453D8AF28FF9BC600D3F49C /* AnimationCacheProviderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8AE28FF9BC600D3F49C /* AnimationCacheProviderTests.swift */; };
|
|
646
|
+
D453D8B228FF9EA900D3F49C /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8B028FF9E3A00D3F49C /* DefaultAnimationCache.swift */; };
|
|
647
|
+
D453D8B328FF9EAA00D3F49C /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8B028FF9E3A00D3F49C /* DefaultAnimationCache.swift */; };
|
|
648
|
+
D453D8B428FF9EAA00D3F49C /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = D453D8B028FF9E3A00D3F49C /* DefaultAnimationCache.swift */; };
|
|
581
649
|
/* End PBXBuildFile section */
|
|
582
650
|
|
|
583
651
|
/* Begin PBXContainerItemProxy section */
|
|
@@ -591,10 +659,17 @@
|
|
|
591
659
|
/* End PBXContainerItemProxy section */
|
|
592
660
|
|
|
593
661
|
/* Begin PBXFileReference section */
|
|
662
|
+
0887346E28F0CBDE00458627 /* LottieAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimation.swift; sourceTree = "<group>"; };
|
|
663
|
+
0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationHelpers.swift; sourceTree = "<group>"; };
|
|
664
|
+
0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewInitializers.swift; sourceTree = "<group>"; };
|
|
665
|
+
0887347428F0CCDD00458627 /* LottieAnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationView.swift; sourceTree = "<group>"; };
|
|
666
|
+
08CB2680291ED2B700B4F071 /* AnimationViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnimationViewTests.swift; sourceTree = "<group>"; };
|
|
667
|
+
08EED04F28F0D2D10057D958 /* LottieColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieColor.swift; sourceTree = "<group>"; };
|
|
594
668
|
08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyframeInterpolator.swift; sourceTree = "<group>"; };
|
|
595
669
|
08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepeaterLayer.swift; sourceTree = "<group>"; };
|
|
596
670
|
08F8B210289990B700CB5323 /* Samples */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Samples; sourceTree = "<group>"; };
|
|
597
671
|
08F8B212289990CB00CB5323 /* SnapshotTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapshotTests.swift; sourceTree = "<group>"; };
|
|
672
|
+
08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfiniteOpaqueAnimationLayer.swift; sourceTree = "<group>"; };
|
|
598
673
|
19465F51282F998B00BB2C97 /* CachedImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CachedImageProvider.swift; sourceTree = "<group>"; };
|
|
599
674
|
2E044E262820536800FA773B /* AutomaticEngineTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutomaticEngineTests.swift; sourceTree = "<group>"; };
|
|
600
675
|
2E09FA0527B6CEB600BA84E5 /* HardcodedFontProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HardcodedFontProvider.swift; sourceTree = "<group>"; };
|
|
@@ -627,7 +702,6 @@
|
|
|
627
702
|
2E9C95372822F43000677516 /* TextLayerModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextLayerModel.swift; sourceTree = "<group>"; };
|
|
628
703
|
2E9C95382822F43000677516 /* PreCompLayerModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreCompLayerModel.swift; sourceTree = "<group>"; };
|
|
629
704
|
2E9C95392822F43000677516 /* ShapeLayerModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShapeLayerModel.swift; sourceTree = "<group>"; };
|
|
630
|
-
2E9C953A2822F43000677516 /* Animation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Animation.swift; sourceTree = "<group>"; };
|
|
631
705
|
2E9C953C2822F43000677516 /* DashPattern.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DashPattern.swift; sourceTree = "<group>"; };
|
|
632
706
|
2E9C953D2822F43000677516 /* Transform.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Transform.swift; sourceTree = "<group>"; };
|
|
633
707
|
2E9C953E2822F43000677516 /* Mask.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Mask.swift; sourceTree = "<group>"; };
|
|
@@ -712,7 +786,7 @@
|
|
|
712
786
|
2E9C95A72822F43100677516 /* CompatibilityTracker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompatibilityTracker.swift; sourceTree = "<group>"; };
|
|
713
787
|
2E9C95A82822F43100677516 /* ValueProviderStore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ValueProviderStore.swift; sourceTree = "<group>"; };
|
|
714
788
|
2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CALayer+fillBounds.swift"; sourceTree = "<group>"; };
|
|
715
|
-
2E9C95AB2822F43100677516 /* Keyframes+
|
|
789
|
+
2E9C95AB2822F43100677516 /* Keyframes+combined.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Keyframes+combined.swift"; sourceTree = "<group>"; };
|
|
716
790
|
2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KeyframeGroup+exactlyOneKeyframe.swift"; sourceTree = "<group>"; };
|
|
717
791
|
2E9C95AE2822F43100677516 /* CAAnimation+TimingConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CAAnimation+TimingConfiguration.swift"; sourceTree = "<group>"; };
|
|
718
792
|
2E9C95AF2822F43100677516 /* ShapeAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = ShapeAnimation.swift; sourceTree = "<group>"; tabWidth = 4; };
|
|
@@ -749,13 +823,10 @@
|
|
|
749
823
|
2EAF59AD27A0787B00E00531 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
750
824
|
2EAF59B927A078E400E00531 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
751
825
|
2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BundleImageProvider.macOS.swift; sourceTree = "<group>"; };
|
|
752
|
-
2EAF59C427A0798700E00531 /*
|
|
826
|
+
2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewBase.macOS.swift; sourceTree = "<group>"; };
|
|
753
827
|
2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationSubview.macOS.swift; sourceTree = "<group>"; };
|
|
754
828
|
2EAF59C627A0798700E00531 /* FilepathImageProvider.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FilepathImageProvider.macOS.swift; sourceTree = "<group>"; };
|
|
755
829
|
2EAF59C727A0798700E00531 /* LottieConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieConfiguration.swift; sourceTree = "<group>"; };
|
|
756
|
-
2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationViewInitializers.swift; sourceTree = "<group>"; };
|
|
757
|
-
2EAF59CA27A0798700E00531 /* AnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationView.swift; sourceTree = "<group>"; };
|
|
758
|
-
2EAF59CB27A0798700E00531 /* AnimationPublic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationPublic.swift; sourceTree = "<group>"; };
|
|
759
830
|
2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationImageProvider.swift; sourceTree = "<group>"; };
|
|
760
831
|
2EAF59D027A0798700E00531 /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompatibleAnimationKeypath.swift; sourceTree = "<group>"; };
|
|
761
832
|
2EAF59D127A0798700E00531 /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompatibleAnimationView.swift; sourceTree = "<group>"; };
|
|
@@ -764,12 +835,11 @@
|
|
|
764
835
|
2EAF59D427A0798700E00531 /* BundleImageProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BundleImageProvider.swift; sourceTree = "<group>"; };
|
|
765
836
|
2EAF59D527A0798700E00531 /* UIColorExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIColorExtension.swift; sourceTree = "<group>"; };
|
|
766
837
|
2EAF59D627A0798700E00531 /* AnimatedButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimatedButton.swift; sourceTree = "<group>"; };
|
|
767
|
-
2EAF59D727A0798700E00531 /*
|
|
838
|
+
2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewBase.swift; sourceTree = "<group>"; };
|
|
768
839
|
2EAF59D827A0798700E00531 /* AnimationSubview.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationSubview.swift; sourceTree = "<group>"; };
|
|
769
840
|
2EAF59D927A0798700E00531 /* AnimatedControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimatedControl.swift; sourceTree = "<group>"; };
|
|
770
841
|
2EAF59DB27A0798700E00531 /* AnimationTime.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationTime.swift; sourceTree = "<group>"; };
|
|
771
842
|
2EAF59DC27A0798700E00531 /* Vectors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Vectors.swift; sourceTree = "<group>"; };
|
|
772
|
-
2EAF59DD27A0798700E00531 /* Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Color.swift; sourceTree = "<group>"; };
|
|
773
843
|
2EAF59DF27A0798700E00531 /* Interpolatable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolatable.swift; sourceTree = "<group>"; };
|
|
774
844
|
2EAF59E027A0798700E00531 /* Keyframe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keyframe.swift; sourceTree = "<group>"; };
|
|
775
845
|
2EAF59E227A0798700E00531 /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationCacheProvider.swift; sourceTree = "<group>"; };
|
|
@@ -785,6 +855,25 @@
|
|
|
785
855
|
2EAF59F027A0798700E00531 /* PointValueProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PointValueProvider.swift; sourceTree = "<group>"; };
|
|
786
856
|
2EAF59F227A0798700E00531 /* AnimationFontProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationFontProvider.swift; sourceTree = "<group>"; };
|
|
787
857
|
36E57EAB28AF7ADF00B7EFDA /* HardcodedTextProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HardcodedTextProvider.swift; sourceTree = "<group>"; };
|
|
858
|
+
57210912291073E400169699 /* RoundedCorners.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoundedCorners.swift; sourceTree = "<group>"; };
|
|
859
|
+
5721091A2910874A00169699 /* RoundedCornersNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoundedCornersNode.swift; sourceTree = "<group>"; };
|
|
860
|
+
5721091E29119F3100169699 /* BezierPathRoundExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BezierPathRoundExtension.swift; sourceTree = "<group>"; };
|
|
861
|
+
6C4877E228FF20140005AF07 /* DotLottieAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DotLottieAnimation.swift; sourceTree = "<group>"; };
|
|
862
|
+
6C4877E328FF20140005AF07 /* DotLottieFile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DotLottieFile.swift; sourceTree = "<group>"; };
|
|
863
|
+
6C4877E428FF20140005AF07 /* DotLottieUtils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DotLottieUtils.swift; sourceTree = "<group>"; };
|
|
864
|
+
6C4877FB28FF20140005AF07 /* DotLottieManifest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DotLottieManifest.swift; sourceTree = "<group>"; };
|
|
865
|
+
6C48784A29008ACF0005AF07 /* DotLottieConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DotLottieConfiguration.swift; sourceTree = "<group>"; };
|
|
866
|
+
6C48785129017CBF0005AF07 /* DotLottieCacheProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DotLottieCacheProvider.swift; sourceTree = "<group>"; };
|
|
867
|
+
6C48785529017D1D0005AF07 /* DotLottieCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DotLottieCache.swift; sourceTree = "<group>"; };
|
|
868
|
+
6C4878592901811D0005AF07 /* DotLottieFileHelpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DotLottieFileHelpers.swift; sourceTree = "<group>"; };
|
|
869
|
+
6C48785F2901D8C70005AF07 /* DotLottieImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DotLottieImageProvider.swift; sourceTree = "<group>"; };
|
|
870
|
+
6CFA1078290B12B900873A98 /* ZipEntry+Serialization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ZipEntry+Serialization.swift"; sourceTree = "<group>"; };
|
|
871
|
+
6CFA1079290B12B900873A98 /* ZipArchive.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ZipArchive.swift; sourceTree = "<group>"; };
|
|
872
|
+
6CFA107A290B12B900873A98 /* Data+Compression.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Data+Compression.swift"; sourceTree = "<group>"; };
|
|
873
|
+
6CFA107B290B12B900873A98 /* ZipEntry.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ZipEntry.swift; sourceTree = "<group>"; };
|
|
874
|
+
6CFA107C290B12B900873A98 /* Data+Serialization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Data+Serialization.swift"; sourceTree = "<group>"; };
|
|
875
|
+
6CFA107D290B12B900873A98 /* FileManager+ZIP.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileManager+ZIP.swift"; sourceTree = "<group>"; };
|
|
876
|
+
6CFA107E290B12B900873A98 /* ZipEntry+ZIP64.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ZipEntry+ZIP64.swift"; sourceTree = "<group>"; };
|
|
788
877
|
6D99D6422823790700E5205B /* LegacyGradientFillRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LegacyGradientFillRenderer.swift; sourceTree = "<group>"; };
|
|
789
878
|
6DB3BDB528243FA5002A276D /* ValueProvidersTests.swift */ = {isa = PBXFileReference; indentWidth = 2; lastKnownFileType = sourcecode.swift; path = ValueProvidersTests.swift; sourceTree = "<group>"; tabWidth = 2; };
|
|
790
879
|
6DB3BDB7282454A6002A276D /* DictionaryInitializable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DictionaryInitializable.swift; sourceTree = "<group>"; };
|
|
@@ -795,6 +884,9 @@
|
|
|
795
884
|
7E48BF5F2860D4FA00A39198 /* KeyframeGroup+Extensions.swift */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = "KeyframeGroup+Extensions.swift"; sourceTree = "<group>"; tabWidth = 4; };
|
|
796
885
|
A1D5BAAB27C731A500777D06 /* DataURLTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataURLTests.swift; sourceTree = "<group>"; };
|
|
797
886
|
A40460582832C52B00ACFEDC /* BlendMode+Filter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "BlendMode+Filter.swift"; sourceTree = "<group>"; };
|
|
887
|
+
D453D8AA28FE6EE300D3F49C /* LottieAnimationCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LottieAnimationCache.swift; sourceTree = "<group>"; };
|
|
888
|
+
D453D8AE28FF9BC600D3F49C /* AnimationCacheProviderTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnimationCacheProviderTests.swift; sourceTree = "<group>"; };
|
|
889
|
+
D453D8B028FF9E3A00D3F49C /* DefaultAnimationCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefaultAnimationCache.swift; sourceTree = "<group>"; };
|
|
798
890
|
/* End PBXFileReference section */
|
|
799
891
|
|
|
800
892
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -867,6 +959,8 @@
|
|
|
867
959
|
2E8040BD27A07343006E74CB /* Utils */,
|
|
868
960
|
2E044E262820536800FA773B /* AutomaticEngineTests.swift */,
|
|
869
961
|
6DB3BDB528243FA5002A276D /* ValueProvidersTests.swift */,
|
|
962
|
+
D453D8AE28FF9BC600D3F49C /* AnimationCacheProviderTests.swift */,
|
|
963
|
+
08CB2680291ED2B700B4F071 /* AnimationViewTests.swift */,
|
|
870
964
|
);
|
|
871
965
|
path = Tests;
|
|
872
966
|
sourceTree = "<group>";
|
|
@@ -886,9 +980,9 @@
|
|
|
886
980
|
2E9C95232822F43000677516 /* Model */ = {
|
|
887
981
|
isa = PBXGroup;
|
|
888
982
|
children = (
|
|
983
|
+
6C58BE3A291023E8005FF0E8 /* DotLottie */,
|
|
889
984
|
2E9C95242822F43000677516 /* ShapeItems */,
|
|
890
985
|
2E9C95332822F43000677516 /* Layers */,
|
|
891
|
-
2E9C953A2822F43000677516 /* Animation.swift */,
|
|
892
986
|
2E9C953B2822F43000677516 /* Objects */,
|
|
893
987
|
2E9C95402822F43000677516 /* Extensions */,
|
|
894
988
|
2E9C95432822F43000677516 /* Keyframes */,
|
|
@@ -916,6 +1010,7 @@
|
|
|
916
1010
|
2E9C95302822F43000677516 /* Stroke.swift */,
|
|
917
1011
|
2E9C95312822F43000677516 /* Rectangle.swift */,
|
|
918
1012
|
2E9C95322822F43000677516 /* Star.swift */,
|
|
1013
|
+
57210912291073E400169699 /* RoundedCorners.swift */,
|
|
919
1014
|
);
|
|
920
1015
|
path = ShapeItems;
|
|
921
1016
|
sourceTree = "<group>";
|
|
@@ -1062,6 +1157,7 @@
|
|
|
1062
1157
|
isa = PBXGroup;
|
|
1063
1158
|
children = (
|
|
1064
1159
|
2E9C95682822F43000677516 /* TrimPathNode.swift */,
|
|
1160
|
+
5721091A2910874A00169699 /* RoundedCornersNode.swift */,
|
|
1065
1161
|
);
|
|
1066
1162
|
path = ModifierNodes;
|
|
1067
1163
|
sourceTree = "<group>";
|
|
@@ -1217,6 +1313,7 @@
|
|
|
1217
1313
|
2E9C95A42822F43100677516 /* BaseAnimationLayer.swift */,
|
|
1218
1314
|
2E9C95A52822F43100677516 /* PreCompLayer.swift */,
|
|
1219
1315
|
08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */,
|
|
1316
|
+
08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */,
|
|
1220
1317
|
);
|
|
1221
1318
|
path = Layers;
|
|
1222
1319
|
sourceTree = "<group>";
|
|
@@ -1225,7 +1322,7 @@
|
|
|
1225
1322
|
isa = PBXGroup;
|
|
1226
1323
|
children = (
|
|
1227
1324
|
2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */,
|
|
1228
|
-
2E9C95AB2822F43100677516 /* Keyframes+
|
|
1325
|
+
2E9C95AB2822F43100677516 /* Keyframes+combined.swift */,
|
|
1229
1326
|
2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */,
|
|
1230
1327
|
);
|
|
1231
1328
|
path = Extensions;
|
|
@@ -1299,6 +1396,7 @@
|
|
|
1299
1396
|
2E9C95CC2822F43100677516 /* CurveVertex.swift */,
|
|
1300
1397
|
2E9C95CD2822F43100677516 /* VectorsExtensions.swift */,
|
|
1301
1398
|
6DB3BDBB28245A14002A276D /* CGPointExtension.swift */,
|
|
1399
|
+
5721091E29119F3100169699 /* BezierPathRoundExtension.swift */,
|
|
1302
1400
|
);
|
|
1303
1401
|
path = Primitives;
|
|
1304
1402
|
sourceTree = "<group>";
|
|
@@ -1337,6 +1435,7 @@
|
|
|
1337
1435
|
2EAF59C227A0798700E00531 /* macOS */,
|
|
1338
1436
|
2EAF59C727A0798700E00531 /* LottieConfiguration.swift */,
|
|
1339
1437
|
2EAF59C827A0798700E00531 /* Animation */,
|
|
1438
|
+
6C4877E028FF20140005AF07 /* DotLottie */,
|
|
1340
1439
|
2EAF59CC27A0798700E00531 /* ImageProvider */,
|
|
1341
1440
|
2EAF59CE27A0798700E00531 /* iOS */,
|
|
1342
1441
|
2EAF59DA27A0798700E00531 /* Primitives */,
|
|
@@ -1354,7 +1453,7 @@
|
|
|
1354
1453
|
isa = PBXGroup;
|
|
1355
1454
|
children = (
|
|
1356
1455
|
2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */,
|
|
1357
|
-
2EAF59C427A0798700E00531 /*
|
|
1456
|
+
2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */,
|
|
1358
1457
|
2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */,
|
|
1359
1458
|
2EAF59C627A0798700E00531 /* FilepathImageProvider.macOS.swift */,
|
|
1360
1459
|
);
|
|
@@ -1364,9 +1463,10 @@
|
|
|
1364
1463
|
2EAF59C827A0798700E00531 /* Animation */ = {
|
|
1365
1464
|
isa = PBXGroup;
|
|
1366
1465
|
children = (
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1466
|
+
0887346E28F0CBDE00458627 /* LottieAnimation.swift */,
|
|
1467
|
+
0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */,
|
|
1468
|
+
0887347428F0CCDD00458627 /* LottieAnimationView.swift */,
|
|
1469
|
+
0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */,
|
|
1370
1470
|
);
|
|
1371
1471
|
path = Animation;
|
|
1372
1472
|
sourceTree = "<group>";
|
|
@@ -1388,7 +1488,7 @@
|
|
|
1388
1488
|
2EAF59D427A0798700E00531 /* BundleImageProvider.swift */,
|
|
1389
1489
|
2EAF59D527A0798700E00531 /* UIColorExtension.swift */,
|
|
1390
1490
|
2EAF59D627A0798700E00531 /* AnimatedButton.swift */,
|
|
1391
|
-
2EAF59D727A0798700E00531 /*
|
|
1491
|
+
2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */,
|
|
1392
1492
|
2EAF59D827A0798700E00531 /* AnimationSubview.swift */,
|
|
1393
1493
|
2EAF59D927A0798700E00531 /* AnimatedControl.swift */,
|
|
1394
1494
|
);
|
|
@@ -1409,7 +1509,7 @@
|
|
|
1409
1509
|
children = (
|
|
1410
1510
|
2EAF59DB27A0798700E00531 /* AnimationTime.swift */,
|
|
1411
1511
|
2EAF59DC27A0798700E00531 /* Vectors.swift */,
|
|
1412
|
-
|
|
1512
|
+
08EED04F28F0D2D10057D958 /* LottieColor.swift */,
|
|
1413
1513
|
);
|
|
1414
1514
|
path = Primitives;
|
|
1415
1515
|
sourceTree = "<group>";
|
|
@@ -1428,6 +1528,8 @@
|
|
|
1428
1528
|
children = (
|
|
1429
1529
|
2EAF59E227A0798700E00531 /* AnimationCacheProvider.swift */,
|
|
1430
1530
|
2EAF59E327A0798700E00531 /* LRUAnimationCache.swift */,
|
|
1531
|
+
D453D8AA28FE6EE300D3F49C /* LottieAnimationCache.swift */,
|
|
1532
|
+
D453D8B028FF9E3A00D3F49C /* DefaultAnimationCache.swift */,
|
|
1431
1533
|
);
|
|
1432
1534
|
path = AnimationCache;
|
|
1433
1535
|
sourceTree = "<group>";
|
|
@@ -1490,6 +1592,52 @@
|
|
|
1490
1592
|
path = Private;
|
|
1491
1593
|
sourceTree = "<group>";
|
|
1492
1594
|
};
|
|
1595
|
+
6C4877E028FF20140005AF07 /* DotLottie */ = {
|
|
1596
|
+
isa = PBXGroup;
|
|
1597
|
+
children = (
|
|
1598
|
+
6C4877E328FF20140005AF07 /* DotLottieFile.swift */,
|
|
1599
|
+
6C4878592901811D0005AF07 /* DotLottieFileHelpers.swift */,
|
|
1600
|
+
6C48785D2901A4110005AF07 /* Cache */,
|
|
1601
|
+
);
|
|
1602
|
+
path = DotLottie;
|
|
1603
|
+
sourceTree = "<group>";
|
|
1604
|
+
};
|
|
1605
|
+
6C48785D2901A4110005AF07 /* Cache */ = {
|
|
1606
|
+
isa = PBXGroup;
|
|
1607
|
+
children = (
|
|
1608
|
+
6C48785129017CBF0005AF07 /* DotLottieCacheProvider.swift */,
|
|
1609
|
+
6C48785529017D1D0005AF07 /* DotLottieCache.swift */,
|
|
1610
|
+
);
|
|
1611
|
+
path = Cache;
|
|
1612
|
+
sourceTree = "<group>";
|
|
1613
|
+
};
|
|
1614
|
+
6C58BE3A291023E8005FF0E8 /* DotLottie */ = {
|
|
1615
|
+
isa = PBXGroup;
|
|
1616
|
+
children = (
|
|
1617
|
+
6C4877FB28FF20140005AF07 /* DotLottieManifest.swift */,
|
|
1618
|
+
6C4877E428FF20140005AF07 /* DotLottieUtils.swift */,
|
|
1619
|
+
6C4877E228FF20140005AF07 /* DotLottieAnimation.swift */,
|
|
1620
|
+
6C48784A29008ACF0005AF07 /* DotLottieConfiguration.swift */,
|
|
1621
|
+
6C48785F2901D8C70005AF07 /* DotLottieImageProvider.swift */,
|
|
1622
|
+
6CFA1077290B12B900873A98 /* Zip */,
|
|
1623
|
+
);
|
|
1624
|
+
path = DotLottie;
|
|
1625
|
+
sourceTree = "<group>";
|
|
1626
|
+
};
|
|
1627
|
+
6CFA1077290B12B900873A98 /* Zip */ = {
|
|
1628
|
+
isa = PBXGroup;
|
|
1629
|
+
children = (
|
|
1630
|
+
6CFA1078290B12B900873A98 /* ZipEntry+Serialization.swift */,
|
|
1631
|
+
6CFA1079290B12B900873A98 /* ZipArchive.swift */,
|
|
1632
|
+
6CFA107A290B12B900873A98 /* Data+Compression.swift */,
|
|
1633
|
+
6CFA107B290B12B900873A98 /* ZipEntry.swift */,
|
|
1634
|
+
6CFA107C290B12B900873A98 /* Data+Serialization.swift */,
|
|
1635
|
+
6CFA107D290B12B900873A98 /* FileManager+ZIP.swift */,
|
|
1636
|
+
6CFA107E290B12B900873A98 /* ZipEntry+ZIP64.swift */,
|
|
1637
|
+
);
|
|
1638
|
+
path = Zip;
|
|
1639
|
+
sourceTree = "<group>";
|
|
1640
|
+
};
|
|
1493
1641
|
/* End PBXGroup section */
|
|
1494
1642
|
|
|
1495
1643
|
/* Begin PBXHeadersBuildPhase section */
|
|
@@ -1531,6 +1679,8 @@
|
|
|
1531
1679
|
dependencies = (
|
|
1532
1680
|
);
|
|
1533
1681
|
name = "Lottie-iOS";
|
|
1682
|
+
packageProductDependencies = (
|
|
1683
|
+
);
|
|
1534
1684
|
productName = Lottie;
|
|
1535
1685
|
productReference = 2E80409A27A0725D006E74CB /* Lottie.framework */;
|
|
1536
1686
|
productType = "com.apple.product-type.framework";
|
|
@@ -1682,23 +1832,28 @@
|
|
|
1682
1832
|
files = (
|
|
1683
1833
|
2E9C96362822F43100677516 /* ImageAsset.swift in Sources */,
|
|
1684
1834
|
2E9C96F62822F43100677516 /* ShapeLayer.swift in Sources */,
|
|
1835
|
+
6C48784728FF20140005AF07 /* DotLottieManifest.swift in Sources */,
|
|
1685
1836
|
2E9C95D62822F43100677516 /* Ellipse.swift in Sources */,
|
|
1686
1837
|
2E9C97442822F43100677516 /* AnimatorNodeDebugging.swift in Sources */,
|
|
1687
1838
|
2E9C96D82822F43100677516 /* AnimatorNode.swift in Sources */,
|
|
1839
|
+
6CFA108B290B12B900873A98 /* Data+Serialization.swift in Sources */,
|
|
1688
1840
|
2E9C96212822F43100677516 /* Bundle.swift in Sources */,
|
|
1689
1841
|
2E9C96CF2822F43100677516 /* ShapeContainerLayer.swift in Sources */,
|
|
1690
1842
|
2E9C973E2822F43100677516 /* LayerDebugging.swift in Sources */,
|
|
1691
1843
|
6D99D6432823790700E5205B /* LegacyGradientFillRenderer.swift in Sources */,
|
|
1692
1844
|
2EAF5B0427A0798700E00531 /* AnimationFontProvider.swift in Sources */,
|
|
1845
|
+
D453D8AB28FE6EE300D3F49C /* LottieAnimationCache.swift in Sources */,
|
|
1693
1846
|
2E9C96DB2822F43100677516 /* TextLayer.swift in Sources */,
|
|
1694
1847
|
2E9C964B2822F43100677516 /* TextCompositionLayer.swift in Sources */,
|
|
1695
1848
|
2EAF5AA427A0798700E00531 /* FilepathImageProvider.macOS.swift in Sources */,
|
|
1696
1849
|
2E9C97292822F43100677516 /* EllipseAnimation.swift in Sources */,
|
|
1697
1850
|
2E9C96DE2822F43100677516 /* GradientRenderLayer.swift in Sources */,
|
|
1851
|
+
D453D8B428FF9EAA00D3F49C /* DefaultAnimationCache.swift in Sources */,
|
|
1698
1852
|
2E9C966C2822F43100677516 /* LayerImageProvider.swift in Sources */,
|
|
1699
1853
|
2EAF5ABC27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
|
|
1700
1854
|
2EAF5AE927A0798700E00531 /* AnimationTextProvider.swift in Sources */,
|
|
1701
1855
|
2E9C96662822F43100677516 /* LayerTransformNode.swift in Sources */,
|
|
1856
|
+
0887346F28F0CBDE00458627 /* LottieAnimation.swift in Sources */,
|
|
1702
1857
|
2E9C97412822F43100677516 /* TestHelpers.swift in Sources */,
|
|
1703
1858
|
08EF21DC289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
|
|
1704
1859
|
2E9C96152822F43100677516 /* Transform.swift in Sources */,
|
|
@@ -1731,15 +1886,16 @@
|
|
|
1731
1886
|
2E9C96752822F43100677516 /* TrimPathNode.swift in Sources */,
|
|
1732
1887
|
2E9C974D2822F43100677516 /* AnimationKeypathExtension.swift in Sources */,
|
|
1733
1888
|
2E9C97052822F43100677516 /* CoreAnimationLayer.swift in Sources */,
|
|
1889
|
+
08EED05028F0D2D10057D958 /* LottieColor.swift in Sources */,
|
|
1734
1890
|
2EAF5AF527A0798700E00531 /* ColorValueProvider.swift in Sources */,
|
|
1735
1891
|
2E9C972F2822F43100677516 /* CustomPathAnimation.swift in Sources */,
|
|
1736
1892
|
2E9C97502822F43100677516 /* StringExtensions.swift in Sources */,
|
|
1737
1893
|
2EAF5AEF27A0798700E00531 /* AnimationKeypath.swift in Sources */,
|
|
1894
|
+
6CFA1082290B12B900873A98 /* ZipArchive.swift in Sources */,
|
|
1738
1895
|
2E9C973B2822F43100677516 /* LayerProperty.swift in Sources */,
|
|
1739
1896
|
2E9C95F72822F43100677516 /* Rectangle.swift in Sources */,
|
|
1740
1897
|
2E9C96812822F43100677516 /* FillRenderer.swift in Sources */,
|
|
1741
1898
|
2E9C95EB2822F43100677516 /* Repeater.swift in Sources */,
|
|
1742
|
-
2EAF5AAA27A0798700E00531 /* AnimationViewInitializers.swift in Sources */,
|
|
1743
1899
|
2EAF5AA727A0798700E00531 /* LottieConfiguration.swift in Sources */,
|
|
1744
1900
|
2E9C95D32822F43100677516 /* Fill.swift in Sources */,
|
|
1745
1901
|
6DB3BDB8282454A6002A276D /* DictionaryInitializable.swift in Sources */,
|
|
@@ -1751,16 +1907,18 @@
|
|
|
1751
1907
|
2E9C96A52822F43100677516 /* StrokeNode.swift in Sources */,
|
|
1752
1908
|
2E9C95E52822F43100677516 /* ShapeTransform.swift in Sources */,
|
|
1753
1909
|
2E9C96C92822F43100677516 /* ItemsExtension.swift in Sources */,
|
|
1754
|
-
2EAF5AAD27A0798700E00531 /* AnimationView.swift in Sources */,
|
|
1755
1910
|
2E9C95E82822F43100677516 /* Merge.swift in Sources */,
|
|
1756
1911
|
2E9C96032822F43100677516 /* ImageLayerModel.swift in Sources */,
|
|
1912
|
+
6CFA1091290B12B900873A98 /* ZipEntry+ZIP64.swift in Sources */,
|
|
1757
1913
|
19465F52282F998B00BB2C97 /* CachedImageProvider.swift in Sources */,
|
|
1758
1914
|
08F8B20D2898A7B100CB5323 /* RepeaterLayer.swift in Sources */,
|
|
1915
|
+
0887347828F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
|
|
1759
1916
|
2E9C96BA2822F43100677516 /* KeypathSearchable.swift in Sources */,
|
|
1760
1917
|
2E9C963C2822F43100677516 /* AssetLibrary.swift in Sources */,
|
|
1761
1918
|
2E9C97022822F43100677516 /* PreCompLayer.swift in Sources */,
|
|
1762
1919
|
2E9C96EA2822F43100677516 /* SolidLayer.swift in Sources */,
|
|
1763
1920
|
2EAF5AA127A0798700E00531 /* AnimationSubview.macOS.swift in Sources */,
|
|
1921
|
+
57210913291073E400169699 /* RoundedCorners.swift in Sources */,
|
|
1764
1922
|
2E9C96C62822F43100677516 /* GroupInterpolator.swift in Sources */,
|
|
1765
1923
|
2E9C96F02822F43100677516 /* TransformLayer.swift in Sources */,
|
|
1766
1924
|
2E9C96332822F43100677516 /* Font.swift in Sources */,
|
|
@@ -1775,6 +1933,7 @@
|
|
|
1775
1933
|
2E9C974A2822F43100677516 /* CGColor+RGB.swift in Sources */,
|
|
1776
1934
|
2E9C96572822F43100677516 /* ShapeCompositionLayer.swift in Sources */,
|
|
1777
1935
|
2E9C96F32822F43100677516 /* AnimationLayer.swift in Sources */,
|
|
1936
|
+
5721091B2910874A00169699 /* RoundedCornersNode.swift in Sources */,
|
|
1778
1937
|
2E9C95FA2822F43100677516 /* Star.swift in Sources */,
|
|
1779
1938
|
2E9C961E2822F43100677516 /* KeyedDecodingContainerExtensions.swift in Sources */,
|
|
1780
1939
|
2E9C96512822F43100677516 /* PreCompositionLayer.swift in Sources */,
|
|
@@ -1784,42 +1943,53 @@
|
|
|
1784
1943
|
2E9C96182822F43100677516 /* Mask.swift in Sources */,
|
|
1785
1944
|
2E9C97622822F43100677516 /* PathElement.swift in Sources */,
|
|
1786
1945
|
2E9C97142822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */,
|
|
1946
|
+
6CFA108E290B12B900873A98 /* FileManager+ZIP.swift in Sources */,
|
|
1787
1947
|
2E9C970E2822F43100677516 /* CALayer+fillBounds.swift in Sources */,
|
|
1788
1948
|
2E9C95FD2822F43100677516 /* SolidLayerModel.swift in Sources */,
|
|
1949
|
+
6CFA1088290B12B900873A98 /* ZipEntry.swift in Sources */,
|
|
1789
1950
|
2E9C970B2822F43100677516 /* ValueProviderStore.swift in Sources */,
|
|
1951
|
+
6C4877FF28FF20140005AF07 /* DotLottieAnimation.swift in Sources */,
|
|
1790
1952
|
2E9C97262822F43100677516 /* StrokeAnimation.swift in Sources */,
|
|
1791
1953
|
2E9C97382822F43100677516 /* VisibilityAnimation.swift in Sources */,
|
|
1792
1954
|
2EAF5AD727A0798700E00531 /* Vectors.swift in Sources */,
|
|
1793
1955
|
2E9C95E22822F43100677516 /* Group.swift in Sources */,
|
|
1794
|
-
2E9C97112822F43100677516 /* Keyframes+
|
|
1956
|
+
2E9C97112822F43100677516 /* Keyframes+combined.swift in Sources */,
|
|
1957
|
+
0887347B28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
|
|
1795
1958
|
2EAF5AD127A0798700E00531 /* AnimatedControl.swift in Sources */,
|
|
1796
1959
|
2E9C966F2822F43100677516 /* LayerTextProvider.swift in Sources */,
|
|
1797
1960
|
2E9C97172822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
|
|
1961
|
+
6C4878602901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */,
|
|
1798
1962
|
2E9C95EE2822F43100677516 /* GradientFill.swift in Sources */,
|
|
1799
1963
|
2E9C95D92822F43100677516 /* Trim.swift in Sources */,
|
|
1800
1964
|
2E9C96C32822F43100677516 /* SingleValueProvider.swift in Sources */,
|
|
1801
1965
|
2E9C967B2822F43100677516 /* GradientFillRenderer.swift in Sources */,
|
|
1802
1966
|
2E9C97352822F43100677516 /* GradientAnimations.swift in Sources */,
|
|
1967
|
+
6C48780528FF20140005AF07 /* DotLottieUtils.swift in Sources */,
|
|
1803
1968
|
2E9C96B42822F43100677516 /* AnyNodeProperty.swift in Sources */,
|
|
1804
1969
|
2EAF5AF827A0798700E00531 /* FloatValueProvider.swift in Sources */,
|
|
1970
|
+
6C48784B29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */,
|
|
1805
1971
|
2E9C968D2822F43100677516 /* PassThroughOutputNode.swift in Sources */,
|
|
1806
1972
|
2EAF5AB627A0798700E00531 /* CompatibleAnimationKeypath.swift in Sources */,
|
|
1807
1973
|
2E9C96872822F43100677516 /* GroupOutputNode.swift in Sources */,
|
|
1808
1974
|
2E9C96692822F43100677516 /* InvertedMatteLayer.swift in Sources */,
|
|
1809
1975
|
2E9C975F2822F43100677516 /* ColorExtension.swift in Sources */,
|
|
1976
|
+
6C48785A2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */,
|
|
1810
1977
|
2E9C961B2822F43100677516 /* Marker.swift in Sources */,
|
|
1978
|
+
6C48785229017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */,
|
|
1811
1979
|
2E9C968A2822F43100677516 /* PathOutputNode.swift in Sources */,
|
|
1812
1980
|
2E9C96D22822F43100677516 /* PathNode.swift in Sources */,
|
|
1813
1981
|
2E9C96842822F43100677516 /* StrokeRenderer.swift in Sources */,
|
|
1814
1982
|
2E9C965A2822F43100677516 /* MaskContainerLayer.swift in Sources */,
|
|
1815
1983
|
2E9C96452822F43100677516 /* CompositionLayer.swift in Sources */,
|
|
1816
|
-
|
|
1984
|
+
08FE934E28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */,
|
|
1817
1985
|
2E9C95F42822F43100677516 /* Stroke.swift in Sources */,
|
|
1818
1986
|
2E9C96722822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
|
|
1819
|
-
2EAF5A9E27A0798700E00531 /*
|
|
1987
|
+
2EAF5A9E27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
|
|
1820
1988
|
2E9C975C2822F43100677516 /* CompoundBezierPath.swift in Sources */,
|
|
1989
|
+
6C48785629017D1D0005AF07 /* DotLottieCache.swift in Sources */,
|
|
1821
1990
|
2E9C97532822F43100677516 /* DataExtension.swift in Sources */,
|
|
1822
1991
|
2E9C95DF2822F43100677516 /* Shape.swift in Sources */,
|
|
1992
|
+
0887347528F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
|
|
1823
1993
|
2E9C96002822F43100677516 /* LayerModel.swift in Sources */,
|
|
1824
1994
|
2E9C97652822F43100677516 /* CurveVertex.swift in Sources */,
|
|
1825
1995
|
2E9C96482822F43100677516 /* NullCompositionLayer.swift in Sources */,
|
|
@@ -1829,7 +1999,6 @@
|
|
|
1829
1999
|
2E9C96242822F43100677516 /* KeyframeGroup.swift in Sources */,
|
|
1830
2000
|
2E9C96FF2822F43100677516 /* BaseAnimationLayer.swift in Sources */,
|
|
1831
2001
|
2E9C96AB2822F43100677516 /* GradientStrokeNode.swift in Sources */,
|
|
1832
|
-
2EAF5AB027A0798700E00531 /* AnimationPublic.swift in Sources */,
|
|
1833
2002
|
2EAF5ABF27A0798700E00531 /* AnimatedSwitch.swift in Sources */,
|
|
1834
2003
|
2EAF5AC227A0798700E00531 /* BundleImageProvider.swift in Sources */,
|
|
1835
2004
|
2E9C976B2822F43100677516 /* InterpolatableExtensions.swift in Sources */,
|
|
@@ -1840,8 +2009,10 @@
|
|
|
1840
2009
|
2E9C972C2822F43100677516 /* StarAnimation.swift in Sources */,
|
|
1841
2010
|
2E9C96E12822F43100677516 /* LayerModel+makeAnimationLayer.swift in Sources */,
|
|
1842
2011
|
2E9C96A82822F43100677516 /* FillNode.swift in Sources */,
|
|
1843
|
-
2EAF5ACB27A0798700E00531 /*
|
|
2012
|
+
2EAF5ACB27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
|
|
1844
2013
|
2E9C96CC2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
|
|
2014
|
+
5721091F29119F3100169699 /* BezierPathRoundExtension.swift in Sources */,
|
|
2015
|
+
6C48780228FF20140005AF07 /* DotLottieFile.swift in Sources */,
|
|
1845
2016
|
2EAF5AEC27A0798700E00531 /* LottieLogger.swift in Sources */,
|
|
1846
2017
|
2E9C976E2822F43100677516 /* KeyframeExtensions.swift in Sources */,
|
|
1847
2018
|
2E9C96392822F43100677516 /* PrecompAsset.swift in Sources */,
|
|
@@ -1851,10 +2022,11 @@
|
|
|
1851
2022
|
7E48BF602860D4FA00A39198 /* KeyframeGroup+Extensions.swift in Sources */,
|
|
1852
2023
|
2E9C962D2822F43100677516 /* Glyph.swift in Sources */,
|
|
1853
2024
|
2E9C96D52822F43100677516 /* RenderNode.swift in Sources */,
|
|
2025
|
+
6CFA1085290B12B900873A98 /* Data+Compression.swift in Sources */,
|
|
1854
2026
|
2E9C971D2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
|
|
1855
2027
|
2EAF5B0127A0798700E00531 /* PointValueProvider.swift in Sources */,
|
|
2028
|
+
6CFA107F290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */,
|
|
1856
2029
|
2EAF5AE027A0798700E00531 /* Keyframe.swift in Sources */,
|
|
1857
|
-
2E9C960F2822F43100677516 /* Animation.swift in Sources */,
|
|
1858
2030
|
2E9C969C2822F43100677516 /* StarNode.swift in Sources */,
|
|
1859
2031
|
A40460592832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
|
|
1860
2032
|
2E9C96542822F43100677516 /* ImageCompositionLayer.swift in Sources */,
|
|
@@ -1872,6 +2044,7 @@
|
|
|
1872
2044
|
buildActionMask = 2147483647;
|
|
1873
2045
|
files = (
|
|
1874
2046
|
08F8B213289990CB00CB5323 /* SnapshotTests.swift in Sources */,
|
|
2047
|
+
08CB2681291ED2B700B4F071 /* AnimationViewTests.swift in Sources */,
|
|
1875
2048
|
A1D5BAAC27C731A500777D06 /* DataURLTests.swift in Sources */,
|
|
1876
2049
|
2E8044AD27A07347006E74CB /* HardcodedImageProvider.swift in Sources */,
|
|
1877
2050
|
2E09FA0627B6CEB600BA84E5 /* HardcodedFontProvider.swift in Sources */,
|
|
@@ -1885,6 +2058,7 @@
|
|
|
1885
2058
|
6DB3BDB628243FA5002A276D /* ValueProvidersTests.swift in Sources */,
|
|
1886
2059
|
2E72128327BB329C0027BC56 /* AnimationKeypathTests.swift in Sources */,
|
|
1887
2060
|
2E044E272820536800FA773B /* AutomaticEngineTests.swift in Sources */,
|
|
2061
|
+
D453D8AF28FF9BC600D3F49C /* AnimationCacheProviderTests.swift in Sources */,
|
|
1888
2062
|
);
|
|
1889
2063
|
runOnlyForDeploymentPostprocessing = 0;
|
|
1890
2064
|
};
|
|
@@ -1894,23 +2068,28 @@
|
|
|
1894
2068
|
files = (
|
|
1895
2069
|
2E9C96372822F43100677516 /* ImageAsset.swift in Sources */,
|
|
1896
2070
|
2E9C96F72822F43100677516 /* ShapeLayer.swift in Sources */,
|
|
2071
|
+
6C48784828FF20140005AF07 /* DotLottieManifest.swift in Sources */,
|
|
1897
2072
|
2E9C95D72822F43100677516 /* Ellipse.swift in Sources */,
|
|
1898
2073
|
2E9C97452822F43100677516 /* AnimatorNodeDebugging.swift in Sources */,
|
|
1899
2074
|
2E9C96D92822F43100677516 /* AnimatorNode.swift in Sources */,
|
|
2075
|
+
6CFA108C290B12B900873A98 /* Data+Serialization.swift in Sources */,
|
|
1900
2076
|
2E9C96222822F43100677516 /* Bundle.swift in Sources */,
|
|
1901
2077
|
2E9C96D02822F43100677516 /* ShapeContainerLayer.swift in Sources */,
|
|
1902
2078
|
2E9C973F2822F43100677516 /* LayerDebugging.swift in Sources */,
|
|
1903
2079
|
6D99D6442823790700E5205B /* LegacyGradientFillRenderer.swift in Sources */,
|
|
1904
2080
|
2EAF5B0527A0798700E00531 /* AnimationFontProvider.swift in Sources */,
|
|
2081
|
+
D453D8AC28FE6EE300D3F49C /* LottieAnimationCache.swift in Sources */,
|
|
1905
2082
|
2E9C96DC2822F43100677516 /* TextLayer.swift in Sources */,
|
|
1906
2083
|
2E9C964C2822F43100677516 /* TextCompositionLayer.swift in Sources */,
|
|
1907
2084
|
2EAF5AA527A0798700E00531 /* FilepathImageProvider.macOS.swift in Sources */,
|
|
1908
2085
|
2E9C972A2822F43100677516 /* EllipseAnimation.swift in Sources */,
|
|
1909
2086
|
2E9C96DF2822F43100677516 /* GradientRenderLayer.swift in Sources */,
|
|
2087
|
+
D453D8B228FF9EA900D3F49C /* DefaultAnimationCache.swift in Sources */,
|
|
1910
2088
|
2E9C966D2822F43100677516 /* LayerImageProvider.swift in Sources */,
|
|
1911
2089
|
2EAF5ABD27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
|
|
1912
2090
|
2EAF5AEA27A0798700E00531 /* AnimationTextProvider.swift in Sources */,
|
|
1913
2091
|
2E9C96672822F43100677516 /* LayerTransformNode.swift in Sources */,
|
|
2092
|
+
0887347028F0CBDE00458627 /* LottieAnimation.swift in Sources */,
|
|
1914
2093
|
2E9C97422822F43100677516 /* TestHelpers.swift in Sources */,
|
|
1915
2094
|
08EF21DD289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
|
|
1916
2095
|
2E9C96162822F43100677516 /* Transform.swift in Sources */,
|
|
@@ -1943,15 +2122,16 @@
|
|
|
1943
2122
|
2E9C96762822F43100677516 /* TrimPathNode.swift in Sources */,
|
|
1944
2123
|
2E9C974E2822F43100677516 /* AnimationKeypathExtension.swift in Sources */,
|
|
1945
2124
|
2E9C97062822F43100677516 /* CoreAnimationLayer.swift in Sources */,
|
|
2125
|
+
08EED05128F0D2D10057D958 /* LottieColor.swift in Sources */,
|
|
1946
2126
|
2EAF5AF627A0798700E00531 /* ColorValueProvider.swift in Sources */,
|
|
1947
2127
|
2E9C97302822F43100677516 /* CustomPathAnimation.swift in Sources */,
|
|
1948
2128
|
2E9C97512822F43100677516 /* StringExtensions.swift in Sources */,
|
|
1949
2129
|
2EAF5AF027A0798700E00531 /* AnimationKeypath.swift in Sources */,
|
|
2130
|
+
6CFA1083290B12B900873A98 /* ZipArchive.swift in Sources */,
|
|
1950
2131
|
2E9C973C2822F43100677516 /* LayerProperty.swift in Sources */,
|
|
1951
2132
|
2E9C95F82822F43100677516 /* Rectangle.swift in Sources */,
|
|
1952
2133
|
2E9C96822822F43100677516 /* FillRenderer.swift in Sources */,
|
|
1953
2134
|
2E9C95EC2822F43100677516 /* Repeater.swift in Sources */,
|
|
1954
|
-
2EAF5AAB27A0798700E00531 /* AnimationViewInitializers.swift in Sources */,
|
|
1955
2135
|
2EAF5AA827A0798700E00531 /* LottieConfiguration.swift in Sources */,
|
|
1956
2136
|
2E9C95D42822F43100677516 /* Fill.swift in Sources */,
|
|
1957
2137
|
6DB3BDB9282454A6002A276D /* DictionaryInitializable.swift in Sources */,
|
|
@@ -1963,16 +2143,18 @@
|
|
|
1963
2143
|
2E9C96A62822F43100677516 /* StrokeNode.swift in Sources */,
|
|
1964
2144
|
2E9C95E62822F43100677516 /* ShapeTransform.swift in Sources */,
|
|
1965
2145
|
2E9C96CA2822F43100677516 /* ItemsExtension.swift in Sources */,
|
|
1966
|
-
2EAF5AAE27A0798700E00531 /* AnimationView.swift in Sources */,
|
|
1967
2146
|
2E9C95E92822F43100677516 /* Merge.swift in Sources */,
|
|
1968
2147
|
2E9C96042822F43100677516 /* ImageLayerModel.swift in Sources */,
|
|
2148
|
+
6CFA1092290B12B900873A98 /* ZipEntry+ZIP64.swift in Sources */,
|
|
1969
2149
|
19465F53282F998B00BB2C97 /* CachedImageProvider.swift in Sources */,
|
|
1970
2150
|
08F8B20E2898A7B100CB5323 /* RepeaterLayer.swift in Sources */,
|
|
2151
|
+
0887347928F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
|
|
1971
2152
|
2E9C96BB2822F43100677516 /* KeypathSearchable.swift in Sources */,
|
|
1972
2153
|
2E9C963D2822F43100677516 /* AssetLibrary.swift in Sources */,
|
|
1973
2154
|
2E9C97032822F43100677516 /* PreCompLayer.swift in Sources */,
|
|
1974
2155
|
2E9C96EB2822F43100677516 /* SolidLayer.swift in Sources */,
|
|
1975
2156
|
2EAF5AA227A0798700E00531 /* AnimationSubview.macOS.swift in Sources */,
|
|
2157
|
+
57210914291073E400169699 /* RoundedCorners.swift in Sources */,
|
|
1976
2158
|
2E9C96C72822F43100677516 /* GroupInterpolator.swift in Sources */,
|
|
1977
2159
|
2E9C96F12822F43100677516 /* TransformLayer.swift in Sources */,
|
|
1978
2160
|
2E9C96342822F43100677516 /* Font.swift in Sources */,
|
|
@@ -1987,6 +2169,7 @@
|
|
|
1987
2169
|
2E9C974B2822F43100677516 /* CGColor+RGB.swift in Sources */,
|
|
1988
2170
|
2E9C96582822F43100677516 /* ShapeCompositionLayer.swift in Sources */,
|
|
1989
2171
|
2E9C96F42822F43100677516 /* AnimationLayer.swift in Sources */,
|
|
2172
|
+
5721091C2910874A00169699 /* RoundedCornersNode.swift in Sources */,
|
|
1990
2173
|
2E9C95FB2822F43100677516 /* Star.swift in Sources */,
|
|
1991
2174
|
2E9C961F2822F43100677516 /* KeyedDecodingContainerExtensions.swift in Sources */,
|
|
1992
2175
|
2E9C96522822F43100677516 /* PreCompositionLayer.swift in Sources */,
|
|
@@ -1996,42 +2179,53 @@
|
|
|
1996
2179
|
2E9C96192822F43100677516 /* Mask.swift in Sources */,
|
|
1997
2180
|
2E9C97632822F43100677516 /* PathElement.swift in Sources */,
|
|
1998
2181
|
2E9C97152822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */,
|
|
2182
|
+
6CFA108F290B12B900873A98 /* FileManager+ZIP.swift in Sources */,
|
|
1999
2183
|
2E9C970F2822F43100677516 /* CALayer+fillBounds.swift in Sources */,
|
|
2000
2184
|
2E9C95FE2822F43100677516 /* SolidLayerModel.swift in Sources */,
|
|
2185
|
+
6CFA1089290B12B900873A98 /* ZipEntry.swift in Sources */,
|
|
2001
2186
|
2E9C970C2822F43100677516 /* ValueProviderStore.swift in Sources */,
|
|
2187
|
+
6C48780028FF20140005AF07 /* DotLottieAnimation.swift in Sources */,
|
|
2002
2188
|
2E9C97272822F43100677516 /* StrokeAnimation.swift in Sources */,
|
|
2003
2189
|
2E9C97392822F43100677516 /* VisibilityAnimation.swift in Sources */,
|
|
2004
2190
|
2EAF5AD827A0798700E00531 /* Vectors.swift in Sources */,
|
|
2005
2191
|
2E9C95E32822F43100677516 /* Group.swift in Sources */,
|
|
2006
|
-
2E9C97122822F43100677516 /* Keyframes+
|
|
2192
|
+
2E9C97122822F43100677516 /* Keyframes+combined.swift in Sources */,
|
|
2193
|
+
0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
|
|
2007
2194
|
2EAF5AD227A0798700E00531 /* AnimatedControl.swift in Sources */,
|
|
2008
2195
|
2E9C96702822F43100677516 /* LayerTextProvider.swift in Sources */,
|
|
2009
2196
|
2E9C97182822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
|
|
2197
|
+
6C4878612901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */,
|
|
2010
2198
|
2E9C95EF2822F43100677516 /* GradientFill.swift in Sources */,
|
|
2011
2199
|
2E9C95DA2822F43100677516 /* Trim.swift in Sources */,
|
|
2012
2200
|
2E9C96C42822F43100677516 /* SingleValueProvider.swift in Sources */,
|
|
2013
2201
|
2E9C967C2822F43100677516 /* GradientFillRenderer.swift in Sources */,
|
|
2014
2202
|
2E9C97362822F43100677516 /* GradientAnimations.swift in Sources */,
|
|
2203
|
+
6C48780628FF20140005AF07 /* DotLottieUtils.swift in Sources */,
|
|
2015
2204
|
2E9C96B52822F43100677516 /* AnyNodeProperty.swift in Sources */,
|
|
2016
2205
|
2EAF5AF927A0798700E00531 /* FloatValueProvider.swift in Sources */,
|
|
2206
|
+
6C48784C29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */,
|
|
2017
2207
|
2E9C968E2822F43100677516 /* PassThroughOutputNode.swift in Sources */,
|
|
2018
2208
|
2EAF5AB727A0798700E00531 /* CompatibleAnimationKeypath.swift in Sources */,
|
|
2019
2209
|
2E9C96882822F43100677516 /* GroupOutputNode.swift in Sources */,
|
|
2020
2210
|
2E9C966A2822F43100677516 /* InvertedMatteLayer.swift in Sources */,
|
|
2021
2211
|
2E9C97602822F43100677516 /* ColorExtension.swift in Sources */,
|
|
2212
|
+
6C48785B2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */,
|
|
2022
2213
|
2E9C961C2822F43100677516 /* Marker.swift in Sources */,
|
|
2214
|
+
6C48785329017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */,
|
|
2023
2215
|
2E9C968B2822F43100677516 /* PathOutputNode.swift in Sources */,
|
|
2024
2216
|
2E9C96D32822F43100677516 /* PathNode.swift in Sources */,
|
|
2025
2217
|
2E9C96852822F43100677516 /* StrokeRenderer.swift in Sources */,
|
|
2026
2218
|
2E9C965B2822F43100677516 /* MaskContainerLayer.swift in Sources */,
|
|
2027
2219
|
2E9C96462822F43100677516 /* CompositionLayer.swift in Sources */,
|
|
2028
|
-
|
|
2220
|
+
08FE934F28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */,
|
|
2029
2221
|
2E9C95F52822F43100677516 /* Stroke.swift in Sources */,
|
|
2030
2222
|
2E9C96732822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
|
|
2031
|
-
2EAF5A9F27A0798700E00531 /*
|
|
2223
|
+
2EAF5A9F27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
|
|
2032
2224
|
2E9C975D2822F43100677516 /* CompoundBezierPath.swift in Sources */,
|
|
2225
|
+
6C48785729017D1D0005AF07 /* DotLottieCache.swift in Sources */,
|
|
2033
2226
|
2E9C97542822F43100677516 /* DataExtension.swift in Sources */,
|
|
2034
2227
|
2E9C95E02822F43100677516 /* Shape.swift in Sources */,
|
|
2228
|
+
0887347628F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
|
|
2035
2229
|
2E9C96012822F43100677516 /* LayerModel.swift in Sources */,
|
|
2036
2230
|
2E9C97662822F43100677516 /* CurveVertex.swift in Sources */,
|
|
2037
2231
|
2E9C96492822F43100677516 /* NullCompositionLayer.swift in Sources */,
|
|
@@ -2041,7 +2235,6 @@
|
|
|
2041
2235
|
2E9C96252822F43100677516 /* KeyframeGroup.swift in Sources */,
|
|
2042
2236
|
2E9C97002822F43100677516 /* BaseAnimationLayer.swift in Sources */,
|
|
2043
2237
|
2E9C96AC2822F43100677516 /* GradientStrokeNode.swift in Sources */,
|
|
2044
|
-
2EAF5AB127A0798700E00531 /* AnimationPublic.swift in Sources */,
|
|
2045
2238
|
2EAF5AC027A0798700E00531 /* AnimatedSwitch.swift in Sources */,
|
|
2046
2239
|
2EAF5AC327A0798700E00531 /* BundleImageProvider.swift in Sources */,
|
|
2047
2240
|
2E9C976C2822F43100677516 /* InterpolatableExtensions.swift in Sources */,
|
|
@@ -2052,8 +2245,10 @@
|
|
|
2052
2245
|
2E9C972D2822F43100677516 /* StarAnimation.swift in Sources */,
|
|
2053
2246
|
2E9C96E22822F43100677516 /* LayerModel+makeAnimationLayer.swift in Sources */,
|
|
2054
2247
|
2E9C96A92822F43100677516 /* FillNode.swift in Sources */,
|
|
2055
|
-
2EAF5ACC27A0798700E00531 /*
|
|
2248
|
+
2EAF5ACC27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
|
|
2056
2249
|
2E9C96CD2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
|
|
2250
|
+
5721092029119F3100169699 /* BezierPathRoundExtension.swift in Sources */,
|
|
2251
|
+
6C48780328FF20140005AF07 /* DotLottieFile.swift in Sources */,
|
|
2057
2252
|
2EAF5AED27A0798700E00531 /* LottieLogger.swift in Sources */,
|
|
2058
2253
|
2E9C976F2822F43100677516 /* KeyframeExtensions.swift in Sources */,
|
|
2059
2254
|
2E9C963A2822F43100677516 /* PrecompAsset.swift in Sources */,
|
|
@@ -2063,10 +2258,11 @@
|
|
|
2063
2258
|
7E48BF612860D4FA00A39198 /* KeyframeGroup+Extensions.swift in Sources */,
|
|
2064
2259
|
2E9C962E2822F43100677516 /* Glyph.swift in Sources */,
|
|
2065
2260
|
2E9C96D62822F43100677516 /* RenderNode.swift in Sources */,
|
|
2261
|
+
6CFA1086290B12B900873A98 /* Data+Compression.swift in Sources */,
|
|
2066
2262
|
2E9C971E2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
|
|
2067
2263
|
2EAF5B0227A0798700E00531 /* PointValueProvider.swift in Sources */,
|
|
2264
|
+
6CFA1080290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */,
|
|
2068
2265
|
2EAF5AE127A0798700E00531 /* Keyframe.swift in Sources */,
|
|
2069
|
-
2E9C96102822F43100677516 /* Animation.swift in Sources */,
|
|
2070
2266
|
2E9C969D2822F43100677516 /* StarNode.swift in Sources */,
|
|
2071
2267
|
A404605A2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
|
|
2072
2268
|
2E9C96552822F43100677516 /* ImageCompositionLayer.swift in Sources */,
|
|
@@ -2085,23 +2281,28 @@
|
|
|
2085
2281
|
files = (
|
|
2086
2282
|
2E9C96382822F43100677516 /* ImageAsset.swift in Sources */,
|
|
2087
2283
|
2E9C96F82822F43100677516 /* ShapeLayer.swift in Sources */,
|
|
2284
|
+
6C48784928FF20140005AF07 /* DotLottieManifest.swift in Sources */,
|
|
2088
2285
|
2E9C95D82822F43100677516 /* Ellipse.swift in Sources */,
|
|
2089
2286
|
2E9C97462822F43100677516 /* AnimatorNodeDebugging.swift in Sources */,
|
|
2090
2287
|
2E9C96DA2822F43100677516 /* AnimatorNode.swift in Sources */,
|
|
2288
|
+
6CFA108D290B12B900873A98 /* Data+Serialization.swift in Sources */,
|
|
2091
2289
|
2E9C96232822F43100677516 /* Bundle.swift in Sources */,
|
|
2092
2290
|
2E9C96D12822F43100677516 /* ShapeContainerLayer.swift in Sources */,
|
|
2093
2291
|
2E9C97402822F43100677516 /* LayerDebugging.swift in Sources */,
|
|
2094
2292
|
6D99D6452823790700E5205B /* LegacyGradientFillRenderer.swift in Sources */,
|
|
2095
2293
|
2EAF5B0627A0798700E00531 /* AnimationFontProvider.swift in Sources */,
|
|
2294
|
+
D453D8AD28FE6EE300D3F49C /* LottieAnimationCache.swift in Sources */,
|
|
2096
2295
|
2E9C96DD2822F43100677516 /* TextLayer.swift in Sources */,
|
|
2097
2296
|
2E9C964D2822F43100677516 /* TextCompositionLayer.swift in Sources */,
|
|
2098
2297
|
2EAF5AA627A0798700E00531 /* FilepathImageProvider.macOS.swift in Sources */,
|
|
2099
2298
|
2E9C972B2822F43100677516 /* EllipseAnimation.swift in Sources */,
|
|
2100
2299
|
2E9C96E02822F43100677516 /* GradientRenderLayer.swift in Sources */,
|
|
2300
|
+
D453D8B328FF9EAA00D3F49C /* DefaultAnimationCache.swift in Sources */,
|
|
2101
2301
|
2E9C966E2822F43100677516 /* LayerImageProvider.swift in Sources */,
|
|
2102
2302
|
2EAF5ABE27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
|
|
2103
2303
|
2EAF5AEB27A0798700E00531 /* AnimationTextProvider.swift in Sources */,
|
|
2104
2304
|
2E9C96682822F43100677516 /* LayerTransformNode.swift in Sources */,
|
|
2305
|
+
0887347128F0CBDE00458627 /* LottieAnimation.swift in Sources */,
|
|
2105
2306
|
2E9C97432822F43100677516 /* TestHelpers.swift in Sources */,
|
|
2106
2307
|
08EF21DE289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
|
|
2107
2308
|
2E9C96172822F43100677516 /* Transform.swift in Sources */,
|
|
@@ -2134,15 +2335,16 @@
|
|
|
2134
2335
|
2E9C96772822F43100677516 /* TrimPathNode.swift in Sources */,
|
|
2135
2336
|
2E9C974F2822F43100677516 /* AnimationKeypathExtension.swift in Sources */,
|
|
2136
2337
|
2E9C97072822F43100677516 /* CoreAnimationLayer.swift in Sources */,
|
|
2338
|
+
08EED05228F0D2D10057D958 /* LottieColor.swift in Sources */,
|
|
2137
2339
|
2EAF5AF727A0798700E00531 /* ColorValueProvider.swift in Sources */,
|
|
2138
2340
|
2E9C97312822F43100677516 /* CustomPathAnimation.swift in Sources */,
|
|
2139
2341
|
2E9C97522822F43100677516 /* StringExtensions.swift in Sources */,
|
|
2140
2342
|
2EAF5AF127A0798700E00531 /* AnimationKeypath.swift in Sources */,
|
|
2343
|
+
6CFA1084290B12B900873A98 /* ZipArchive.swift in Sources */,
|
|
2141
2344
|
2E9C973D2822F43100677516 /* LayerProperty.swift in Sources */,
|
|
2142
2345
|
2E9C95F92822F43100677516 /* Rectangle.swift in Sources */,
|
|
2143
2346
|
2E9C96832822F43100677516 /* FillRenderer.swift in Sources */,
|
|
2144
2347
|
2E9C95ED2822F43100677516 /* Repeater.swift in Sources */,
|
|
2145
|
-
2EAF5AAC27A0798700E00531 /* AnimationViewInitializers.swift in Sources */,
|
|
2146
2348
|
2EAF5AA927A0798700E00531 /* LottieConfiguration.swift in Sources */,
|
|
2147
2349
|
2E9C95D52822F43100677516 /* Fill.swift in Sources */,
|
|
2148
2350
|
6DB3BDBA282454A6002A276D /* DictionaryInitializable.swift in Sources */,
|
|
@@ -2154,16 +2356,18 @@
|
|
|
2154
2356
|
2E9C96A72822F43100677516 /* StrokeNode.swift in Sources */,
|
|
2155
2357
|
2E9C95E72822F43100677516 /* ShapeTransform.swift in Sources */,
|
|
2156
2358
|
2E9C96CB2822F43100677516 /* ItemsExtension.swift in Sources */,
|
|
2157
|
-
2EAF5AAF27A0798700E00531 /* AnimationView.swift in Sources */,
|
|
2158
2359
|
2E9C95EA2822F43100677516 /* Merge.swift in Sources */,
|
|
2159
2360
|
2E9C96052822F43100677516 /* ImageLayerModel.swift in Sources */,
|
|
2361
|
+
6CFA1093290B12B900873A98 /* ZipEntry+ZIP64.swift in Sources */,
|
|
2160
2362
|
19465F54282F998B00BB2C97 /* CachedImageProvider.swift in Sources */,
|
|
2161
2363
|
08F8B20F2898A7B100CB5323 /* RepeaterLayer.swift in Sources */,
|
|
2364
|
+
0887347A28F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
|
|
2162
2365
|
2E9C96BC2822F43100677516 /* KeypathSearchable.swift in Sources */,
|
|
2163
2366
|
2E9C963E2822F43100677516 /* AssetLibrary.swift in Sources */,
|
|
2164
2367
|
2E9C97042822F43100677516 /* PreCompLayer.swift in Sources */,
|
|
2165
2368
|
2E9C96EC2822F43100677516 /* SolidLayer.swift in Sources */,
|
|
2166
2369
|
2EAF5AA327A0798700E00531 /* AnimationSubview.macOS.swift in Sources */,
|
|
2370
|
+
57210915291073E400169699 /* RoundedCorners.swift in Sources */,
|
|
2167
2371
|
2E9C96C82822F43100677516 /* GroupInterpolator.swift in Sources */,
|
|
2168
2372
|
2E9C96F22822F43100677516 /* TransformLayer.swift in Sources */,
|
|
2169
2373
|
2E9C96352822F43100677516 /* Font.swift in Sources */,
|
|
@@ -2178,6 +2382,7 @@
|
|
|
2178
2382
|
2E9C974C2822F43100677516 /* CGColor+RGB.swift in Sources */,
|
|
2179
2383
|
2E9C96592822F43100677516 /* ShapeCompositionLayer.swift in Sources */,
|
|
2180
2384
|
2E9C96F52822F43100677516 /* AnimationLayer.swift in Sources */,
|
|
2385
|
+
5721091D2910874A00169699 /* RoundedCornersNode.swift in Sources */,
|
|
2181
2386
|
2E9C95FC2822F43100677516 /* Star.swift in Sources */,
|
|
2182
2387
|
2E9C96202822F43100677516 /* KeyedDecodingContainerExtensions.swift in Sources */,
|
|
2183
2388
|
2E9C96532822F43100677516 /* PreCompositionLayer.swift in Sources */,
|
|
@@ -2187,43 +2392,54 @@
|
|
|
2187
2392
|
2E9C961A2822F43100677516 /* Mask.swift in Sources */,
|
|
2188
2393
|
2E9C97642822F43100677516 /* PathElement.swift in Sources */,
|
|
2189
2394
|
2E9C97162822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */,
|
|
2395
|
+
6CFA1090290B12B900873A98 /* FileManager+ZIP.swift in Sources */,
|
|
2190
2396
|
2E9C97102822F43100677516 /* CALayer+fillBounds.swift in Sources */,
|
|
2191
2397
|
2E9C95FF2822F43100677516 /* SolidLayerModel.swift in Sources */,
|
|
2398
|
+
6CFA108A290B12B900873A98 /* ZipEntry.swift in Sources */,
|
|
2192
2399
|
2E9C970D2822F43100677516 /* ValueProviderStore.swift in Sources */,
|
|
2400
|
+
6C48780128FF20140005AF07 /* DotLottieAnimation.swift in Sources */,
|
|
2193
2401
|
2E9C97282822F43100677516 /* StrokeAnimation.swift in Sources */,
|
|
2194
2402
|
2E9C973A2822F43100677516 /* VisibilityAnimation.swift in Sources */,
|
|
2195
2403
|
2EAF5AD927A0798700E00531 /* Vectors.swift in Sources */,
|
|
2196
2404
|
2E9C95E42822F43100677516 /* Group.swift in Sources */,
|
|
2197
|
-
2E9C97132822F43100677516 /* Keyframes+
|
|
2405
|
+
2E9C97132822F43100677516 /* Keyframes+combined.swift in Sources */,
|
|
2406
|
+
0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
|
|
2198
2407
|
2EAF5AD327A0798700E00531 /* AnimatedControl.swift in Sources */,
|
|
2199
2408
|
2E9C96712822F43100677516 /* LayerTextProvider.swift in Sources */,
|
|
2200
2409
|
2E9C97192822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
|
|
2410
|
+
6C4878622901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */,
|
|
2201
2411
|
2E9C95F02822F43100677516 /* GradientFill.swift in Sources */,
|
|
2202
2412
|
2E9C95DB2822F43100677516 /* Trim.swift in Sources */,
|
|
2203
2413
|
2E9C96C52822F43100677516 /* SingleValueProvider.swift in Sources */,
|
|
2204
2414
|
2E9C967D2822F43100677516 /* GradientFillRenderer.swift in Sources */,
|
|
2205
2415
|
2E9C97372822F43100677516 /* GradientAnimations.swift in Sources */,
|
|
2416
|
+
6C48780728FF20140005AF07 /* DotLottieUtils.swift in Sources */,
|
|
2206
2417
|
2E9C96B62822F43100677516 /* AnyNodeProperty.swift in Sources */,
|
|
2207
2418
|
2EAF5AFA27A0798700E00531 /* FloatValueProvider.swift in Sources */,
|
|
2419
|
+
6C48784D29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */,
|
|
2208
2420
|
2E9C968F2822F43100677516 /* PassThroughOutputNode.swift in Sources */,
|
|
2209
2421
|
2EAF5AB827A0798700E00531 /* CompatibleAnimationKeypath.swift in Sources */,
|
|
2210
2422
|
2E9C96892822F43100677516 /* GroupOutputNode.swift in Sources */,
|
|
2211
2423
|
2E9C966B2822F43100677516 /* InvertedMatteLayer.swift in Sources */,
|
|
2212
2424
|
2E9C97612822F43100677516 /* ColorExtension.swift in Sources */,
|
|
2425
|
+
6C48785C2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */,
|
|
2213
2426
|
2E9C961D2822F43100677516 /* Marker.swift in Sources */,
|
|
2427
|
+
6C48785429017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */,
|
|
2214
2428
|
2E9C968C2822F43100677516 /* PathOutputNode.swift in Sources */,
|
|
2215
2429
|
2E9C96D42822F43100677516 /* PathNode.swift in Sources */,
|
|
2216
2430
|
2E9C96862822F43100677516 /* StrokeRenderer.swift in Sources */,
|
|
2217
2431
|
2E9C965C2822F43100677516 /* MaskContainerLayer.swift in Sources */,
|
|
2218
2432
|
2E9C96472822F43100677516 /* CompositionLayer.swift in Sources */,
|
|
2219
|
-
|
|
2433
|
+
08FE935028F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */,
|
|
2220
2434
|
2E9C95F62822F43100677516 /* Stroke.swift in Sources */,
|
|
2221
2435
|
2E9C96742822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
|
|
2222
|
-
2EAF5AA027A0798700E00531 /*
|
|
2436
|
+
2EAF5AA027A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
|
|
2223
2437
|
2E9C975E2822F43100677516 /* CompoundBezierPath.swift in Sources */,
|
|
2224
2438
|
2E9C97552822F43100677516 /* DataExtension.swift in Sources */,
|
|
2225
2439
|
2E9C95E12822F43100677516 /* Shape.swift in Sources */,
|
|
2440
|
+
0887347728F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
|
|
2226
2441
|
2E9C96022822F43100677516 /* LayerModel.swift in Sources */,
|
|
2442
|
+
6CC544932902FF7D00212722 /* DotLottieCache.swift in Sources */,
|
|
2227
2443
|
2E9C97672822F43100677516 /* CurveVertex.swift in Sources */,
|
|
2228
2444
|
2E9C964A2822F43100677516 /* NullCompositionLayer.swift in Sources */,
|
|
2229
2445
|
2EAF5B0027A0798700E00531 /* GradientValueProvider.swift in Sources */,
|
|
@@ -2232,7 +2448,6 @@
|
|
|
2232
2448
|
2E9C96262822F43100677516 /* KeyframeGroup.swift in Sources */,
|
|
2233
2449
|
2E9C97012822F43100677516 /* BaseAnimationLayer.swift in Sources */,
|
|
2234
2450
|
2E9C96AD2822F43100677516 /* GradientStrokeNode.swift in Sources */,
|
|
2235
|
-
2EAF5AB227A0798700E00531 /* AnimationPublic.swift in Sources */,
|
|
2236
2451
|
2EAF5AC127A0798700E00531 /* AnimatedSwitch.swift in Sources */,
|
|
2237
2452
|
2EAF5AC427A0798700E00531 /* BundleImageProvider.swift in Sources */,
|
|
2238
2453
|
2E9C976D2822F43100677516 /* InterpolatableExtensions.swift in Sources */,
|
|
@@ -2243,8 +2458,10 @@
|
|
|
2243
2458
|
2E9C972E2822F43100677516 /* StarAnimation.swift in Sources */,
|
|
2244
2459
|
2E9C96E32822F43100677516 /* LayerModel+makeAnimationLayer.swift in Sources */,
|
|
2245
2460
|
2E9C96AA2822F43100677516 /* FillNode.swift in Sources */,
|
|
2246
|
-
2EAF5ACD27A0798700E00531 /*
|
|
2461
|
+
2EAF5ACD27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
|
|
2247
2462
|
2E9C96CE2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
|
|
2463
|
+
6C48780428FF20140005AF07 /* DotLottieFile.swift in Sources */,
|
|
2464
|
+
5721092129119F3100169699 /* BezierPathRoundExtension.swift in Sources */,
|
|
2248
2465
|
2EAF5AEE27A0798700E00531 /* LottieLogger.swift in Sources */,
|
|
2249
2466
|
2E9C97702822F43100677516 /* KeyframeExtensions.swift in Sources */,
|
|
2250
2467
|
2E9C963B2822F43100677516 /* PrecompAsset.swift in Sources */,
|
|
@@ -2254,10 +2471,11 @@
|
|
|
2254
2471
|
7E48BF622860D4FA00A39198 /* KeyframeGroup+Extensions.swift in Sources */,
|
|
2255
2472
|
2E9C962F2822F43100677516 /* Glyph.swift in Sources */,
|
|
2256
2473
|
2E9C96D72822F43100677516 /* RenderNode.swift in Sources */,
|
|
2474
|
+
6CFA1087290B12B900873A98 /* Data+Compression.swift in Sources */,
|
|
2257
2475
|
2E9C971F2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
|
|
2258
2476
|
2EAF5B0327A0798700E00531 /* PointValueProvider.swift in Sources */,
|
|
2477
|
+
6CFA1081290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */,
|
|
2259
2478
|
2EAF5AE227A0798700E00531 /* Keyframe.swift in Sources */,
|
|
2260
|
-
2E9C96112822F43100677516 /* Animation.swift in Sources */,
|
|
2261
2479
|
2E9C969E2822F43100677516 /* StarNode.swift in Sources */,
|
|
2262
2480
|
A404605B2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
|
|
2263
2481
|
2E9C96562822F43100677516 /* ImageCompositionLayer.swift in Sources */,
|
|
@@ -2468,7 +2686,7 @@
|
|
|
2468
2686
|
CODE_SIGN_STYLE = Automatic;
|
|
2469
2687
|
CURRENT_PROJECT_VERSION = 1;
|
|
2470
2688
|
GENERATE_INFOPLIST_FILE = YES;
|
|
2471
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
2689
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
2472
2690
|
MACOSX_DEPLOYMENT_TARGET = 10.15;
|
|
2473
2691
|
MARKETING_VERSION = 1.0;
|
|
2474
2692
|
PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.LottieTests;
|
|
@@ -2487,7 +2705,7 @@
|
|
|
2487
2705
|
CODE_SIGN_STYLE = Automatic;
|
|
2488
2706
|
CURRENT_PROJECT_VERSION = 1;
|
|
2489
2707
|
GENERATE_INFOPLIST_FILE = YES;
|
|
2490
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
2708
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
2491
2709
|
MACOSX_DEPLOYMENT_TARGET = 10.15;
|
|
2492
2710
|
MARKETING_VERSION = 1.0;
|
|
2493
2711
|
PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.LottieTests;
|
|
@@ -2518,7 +2736,7 @@
|
|
|
2518
2736
|
"@executable_path/../Frameworks",
|
|
2519
2737
|
"@loader_path/Frameworks",
|
|
2520
2738
|
);
|
|
2521
|
-
MACOSX_DEPLOYMENT_TARGET = 10.
|
|
2739
|
+
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
|
2522
2740
|
MARKETING_VERSION = 1.0;
|
|
2523
2741
|
PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.Lottie;
|
|
2524
2742
|
PRODUCT_NAME = Lottie;
|
|
@@ -2548,7 +2766,7 @@
|
|
|
2548
2766
|
"@executable_path/../Frameworks",
|
|
2549
2767
|
"@loader_path/Frameworks",
|
|
2550
2768
|
);
|
|
2551
|
-
MACOSX_DEPLOYMENT_TARGET = 10.
|
|
2769
|
+
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
|
2552
2770
|
MARKETING_VERSION = 1.0;
|
|
2553
2771
|
PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.Lottie;
|
|
2554
2772
|
PRODUCT_NAME = Lottie;
|