lottie-ios 3.5.0 → 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 +230 -12
- 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 +5 -8
- package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +42 -3
- package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +3 -15
- package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +25 -17
- package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +6 -17
- package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +25 -11
- package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +4 -23
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +1 -1
- 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/CALayer+setupLayerHierarchy.swift +7 -5
- package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +13 -10
- package/Sources/Private/CoreAnimation/Layers/InfiniteOpaqueAnimationLayer.swift +56 -0
- package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +1 -2
- package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +9 -3
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +7 -18
- package/Sources/Private/CoreAnimation/ValueProviderStore.swift +1 -2
- package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +3 -3
- package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -2
- package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +4 -3
- package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -3
- 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 +1 -1
- 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/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/KeyframeGroup.swift +9 -2
- package/Sources/Private/Model/Layers/LayerModel.swift +1 -1
- package/Sources/Private/Model/Layers/TextLayerModel.swift +1 -1
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +1 -1
- package/Sources/Private/Model/ShapeItems/RoundedCorners.swift +47 -0
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +4 -0
- package/Sources/Private/Model/ShapeItems/Stroke.swift +1 -1
- package/Sources/Private/Model/Text/Font.swift +1 -1
- 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/Primitives/BezierPathRoundExtension.swift +147 -0
- package/Sources/Private/Utility/Primitives/ColorExtension.swift +2 -5
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +0 -8
- package/Sources/Public/Animation/LottieAnimation.swift +2 -10
- package/Sources/Public/Animation/LottieAnimationHelpers.swift +46 -11
- package/Sources/Public/Animation/LottieAnimationView.swift +102 -14
- package/Sources/Public/Animation/LottieAnimationViewInitializers.swift +123 -10
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +1 -1
- 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/LottieConfiguration.swift +24 -6
- package/Sources/Public/Primitives/LottieColor.swift +0 -8
- package/Sources/Public/Primitives/Vectors.swift +0 -16
- package/Tests/AnimationCacheProviderTests.swift +40 -0
- package/Tests/AnimationKeypathTests.swift +19 -12
- package/Tests/AnimationViewTests.swift +64 -0
- package/Tests/AutomaticEngineTests.swift +11 -2
- package/Tests/ParsingTests.swift +3 -1
- package/Tests/PerformanceTests.swift +1 -1
- package/Tests/SnapshotConfiguration.swift +3 -3
- package/Tests/SnapshotTests.swift +53 -23
- 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/Tests/Artifacts/LottieTests.xcresult/Data/data.0~22UHuHHSTYh5NFeueXXSDdev_8VAbw8H8yl2ICssaC0vaCLj2G2CGZCjUMEyki9c-k-CecFJRyspvzJLiQTjUw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -1
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~6DmZhylL-XQx-O08NugyWINI0ugrLVgVOpbrdp0sT2tEqw-jVD2vvBWYRnYHALkM2_qP2yy-VoovSMzfYALY8A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9dj3E5foFK2l_1CEpoRxToU1N6jCdhRVc5vhR10fHS938L9w8HxbiVCPGxYy5981O6M1yZsD4tHFbqBMbER4bQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bys36bGK_YkCjRNoPMkq3R0OcyPNrVNka1Gz45ilbXJTqp9xAJexx6qKBh86_fm7OgBCO0WS2gJBy77DUUnOOA== +0 -1
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~QJMKb50ZfaWLSHxBSGPlrzULLCqTlb_6W-X0N1-e5PfwCKjpYKOElImsOwgZKVK0cdyf-6u4Zp3mm3BfGQVQ9Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~YyEdK1WNFTPo-R3Og2OWduKSikuFYneXurEZbyNLZeDmJLJkd7Ew8jNxy4mvgZw4f4Sikp4swEjJgVzXqhev5g== +0 -1
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bZd73QR3pWGndrn46_NXJw2dUT7WdBjkH5fdPZ7EnzlcZ9Ifv6WR14RKeWI9diiEjcRJE7ZOWqZ9fzf2vvTnLw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~baCaLsz8Sq-r6sHhJcZeowVdrnrIxKwDps5Q1Aq38G2AQ3HaopZ9m3A8IXtTFSiZGNiO2qnM9yH7iJfuzC5K0A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~iZXYCVJLYHKtR7eFHwefLiejC9CkRbBBSkkZmwfkiDEIdUKE4GgVkdDrcHry91RF7d9y7AuYovfGVp1-fuNg0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~pTTJImrF4EktmVXGCigWBn7v6YlbH5eFCXIW35CW-iyypvzFMXXYYbQO1ly6Bf3u6CdaepZko-L9obC1mjigMA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~sVXLeN9UCp6IsOPeuoY76nF-bP-w2rBm61UYvs5XE3o5XhbM7itN2s1XD5i9COIaVMytmUFB-mvCLCqHfHWwpw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~t8Vsjx3tjPBGQIElMCvqzxLS0hDmBGuLa_CEiB64N2Vxp3qoUfNF0Sar84QnEDOKfyVF6c1KTn1QYg7fRJrk8g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zUmPx8nRHLa8-g1WWSYYzveS_6qmBf-y4xyS-dHzD7c_xWwPZlsfKg8UngImNdn0gxGOBSRmCeXbYwWpLfj_Rg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~22UHuHHSTYh5NFeueXXSDdev_8VAbw8H8yl2ICssaC0vaCLj2G2CGZCjUMEyki9c-k-CecFJRyspvzJLiQTjUw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~6DmZhylL-XQx-O08NugyWINI0ugrLVgVOpbrdp0sT2tEqw-jVD2vvBWYRnYHALkM2_qP2yy-VoovSMzfYALY8A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9dj3E5foFK2l_1CEpoRxToU1N6jCdhRVc5vhR10fHS938L9w8HxbiVCPGxYy5981O6M1yZsD4tHFbqBMbER4bQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bys36bGK_YkCjRNoPMkq3R0OcyPNrVNka1Gz45ilbXJTqp9xAJexx6qKBh86_fm7OgBCO0WS2gJBy77DUUnOOA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~QJMKb50ZfaWLSHxBSGPlrzULLCqTlb_6W-X0N1-e5PfwCKjpYKOElImsOwgZKVK0cdyf-6u4Zp3mm3BfGQVQ9Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~YyEdK1WNFTPo-R3Og2OWduKSikuFYneXurEZbyNLZeDmJLJkd7Ew8jNxy4mvgZw4f4Sikp4swEjJgVzXqhev5g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bZd73QR3pWGndrn46_NXJw2dUT7WdBjkH5fdPZ7EnzlcZ9Ifv6WR14RKeWI9diiEjcRJE7ZOWqZ9fzf2vvTnLw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~baCaLsz8Sq-r6sHhJcZeowVdrnrIxKwDps5Q1Aq38G2AQ3HaopZ9m3A8IXtTFSiZGNiO2qnM9yH7iJfuzC5K0A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~iZXYCVJLYHKtR7eFHwefLiejC9CkRbBBSkkZmwfkiDEIdUKE4GgVkdDrcHry91RF7d9y7AuYovfGVp1-fuNg0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~pTTJImrF4EktmVXGCigWBn7v6YlbH5eFCXIW35CW-iyypvzFMXXYYbQO1ly6Bf3u6CdaepZko-L9obC1mjigMA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~sVXLeN9UCp6IsOPeuoY76nF-bP-w2rBm61UYvs5XE3o5XhbM7itN2s1XD5i9COIaVMytmUFB-mvCLCqHfHWwpw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~t8Vsjx3tjPBGQIElMCvqzxLS0hDmBGuLa_CEiB64N2Vxp3qoUfNF0Sar84QnEDOKfyVF6c1KTn1QYg7fRJrk8g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zUmPx8nRHLa8-g1WWSYYzveS_6qmBf-y4xyS-dHzD7c_xWwPZlsfKg8UngImNdn0gxGOBSRmCeXbYwWpLfj_Rg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Info.plist +0 -29
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
0887347B28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
|
|
20
20
|
0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
|
|
21
21
|
0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
|
|
22
|
+
08CB2681291ED2B700B4F071 /* AnimationViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08CB2680291ED2B700B4F071 /* AnimationViewTests.swift */; };
|
|
22
23
|
08EED05028F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
|
|
23
24
|
08EED05128F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
|
|
24
25
|
08EED05228F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
|
|
@@ -30,6 +31,9 @@
|
|
|
30
31
|
08F8B20F2898A7B100CB5323 /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */; };
|
|
31
32
|
08F8B211289990B700CB5323 /* Samples in Resources */ = {isa = PBXBuildFile; fileRef = 08F8B210289990B700CB5323 /* Samples */; };
|
|
32
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 */; };
|
|
33
37
|
19465F52282F998B00BB2C97 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19465F51282F998B00BB2C97 /* CachedImageProvider.swift */; };
|
|
34
38
|
19465F53282F998B00BB2C97 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19465F51282F998B00BB2C97 /* CachedImageProvider.swift */; };
|
|
35
39
|
19465F54282F998B00BB2C97 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19465F51282F998B00BB2C97 /* CachedImageProvider.swift */; };
|
|
@@ -358,9 +362,9 @@
|
|
|
358
362
|
2E9C970E2822F43100677516 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */; };
|
|
359
363
|
2E9C970F2822F43100677516 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */; };
|
|
360
364
|
2E9C97102822F43100677516 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */; };
|
|
361
|
-
2E9C97112822F43100677516 /* Keyframes+
|
|
362
|
-
2E9C97122822F43100677516 /* Keyframes+
|
|
363
|
-
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 */; };
|
|
364
368
|
2E9C97142822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */; };
|
|
365
369
|
2E9C97152822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */; };
|
|
366
370
|
2E9C97162822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.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 */
|
|
@@ -595,11 +663,13 @@
|
|
|
595
663
|
0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationHelpers.swift; sourceTree = "<group>"; };
|
|
596
664
|
0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewInitializers.swift; sourceTree = "<group>"; };
|
|
597
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>"; };
|
|
598
667
|
08EED04F28F0D2D10057D958 /* LottieColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieColor.swift; sourceTree = "<group>"; };
|
|
599
668
|
08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyframeInterpolator.swift; sourceTree = "<group>"; };
|
|
600
669
|
08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepeaterLayer.swift; sourceTree = "<group>"; };
|
|
601
670
|
08F8B210289990B700CB5323 /* Samples */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Samples; sourceTree = "<group>"; };
|
|
602
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>"; };
|
|
603
673
|
19465F51282F998B00BB2C97 /* CachedImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CachedImageProvider.swift; sourceTree = "<group>"; };
|
|
604
674
|
2E044E262820536800FA773B /* AutomaticEngineTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutomaticEngineTests.swift; sourceTree = "<group>"; };
|
|
605
675
|
2E09FA0527B6CEB600BA84E5 /* HardcodedFontProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HardcodedFontProvider.swift; sourceTree = "<group>"; };
|
|
@@ -716,7 +786,7 @@
|
|
|
716
786
|
2E9C95A72822F43100677516 /* CompatibilityTracker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompatibilityTracker.swift; sourceTree = "<group>"; };
|
|
717
787
|
2E9C95A82822F43100677516 /* ValueProviderStore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ValueProviderStore.swift; sourceTree = "<group>"; };
|
|
718
788
|
2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CALayer+fillBounds.swift"; sourceTree = "<group>"; };
|
|
719
|
-
2E9C95AB2822F43100677516 /* Keyframes+
|
|
789
|
+
2E9C95AB2822F43100677516 /* Keyframes+combined.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Keyframes+combined.swift"; sourceTree = "<group>"; };
|
|
720
790
|
2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KeyframeGroup+exactlyOneKeyframe.swift"; sourceTree = "<group>"; };
|
|
721
791
|
2E9C95AE2822F43100677516 /* CAAnimation+TimingConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CAAnimation+TimingConfiguration.swift"; sourceTree = "<group>"; };
|
|
722
792
|
2E9C95AF2822F43100677516 /* ShapeAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = ShapeAnimation.swift; sourceTree = "<group>"; tabWidth = 4; };
|
|
@@ -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,6 +980,7 @@
|
|
|
886
980
|
2E9C95232822F43000677516 /* Model */ = {
|
|
887
981
|
isa = PBXGroup;
|
|
888
982
|
children = (
|
|
983
|
+
6C58BE3A291023E8005FF0E8 /* DotLottie */,
|
|
889
984
|
2E9C95242822F43000677516 /* ShapeItems */,
|
|
890
985
|
2E9C95332822F43000677516 /* Layers */,
|
|
891
986
|
2E9C953B2822F43000677516 /* Objects */,
|
|
@@ -915,6 +1010,7 @@
|
|
|
915
1010
|
2E9C95302822F43000677516 /* Stroke.swift */,
|
|
916
1011
|
2E9C95312822F43000677516 /* Rectangle.swift */,
|
|
917
1012
|
2E9C95322822F43000677516 /* Star.swift */,
|
|
1013
|
+
57210912291073E400169699 /* RoundedCorners.swift */,
|
|
918
1014
|
);
|
|
919
1015
|
path = ShapeItems;
|
|
920
1016
|
sourceTree = "<group>";
|
|
@@ -1061,6 +1157,7 @@
|
|
|
1061
1157
|
isa = PBXGroup;
|
|
1062
1158
|
children = (
|
|
1063
1159
|
2E9C95682822F43000677516 /* TrimPathNode.swift */,
|
|
1160
|
+
5721091A2910874A00169699 /* RoundedCornersNode.swift */,
|
|
1064
1161
|
);
|
|
1065
1162
|
path = ModifierNodes;
|
|
1066
1163
|
sourceTree = "<group>";
|
|
@@ -1216,6 +1313,7 @@
|
|
|
1216
1313
|
2E9C95A42822F43100677516 /* BaseAnimationLayer.swift */,
|
|
1217
1314
|
2E9C95A52822F43100677516 /* PreCompLayer.swift */,
|
|
1218
1315
|
08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */,
|
|
1316
|
+
08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */,
|
|
1219
1317
|
);
|
|
1220
1318
|
path = Layers;
|
|
1221
1319
|
sourceTree = "<group>";
|
|
@@ -1224,7 +1322,7 @@
|
|
|
1224
1322
|
isa = PBXGroup;
|
|
1225
1323
|
children = (
|
|
1226
1324
|
2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */,
|
|
1227
|
-
2E9C95AB2822F43100677516 /* Keyframes+
|
|
1325
|
+
2E9C95AB2822F43100677516 /* Keyframes+combined.swift */,
|
|
1228
1326
|
2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */,
|
|
1229
1327
|
);
|
|
1230
1328
|
path = Extensions;
|
|
@@ -1298,6 +1396,7 @@
|
|
|
1298
1396
|
2E9C95CC2822F43100677516 /* CurveVertex.swift */,
|
|
1299
1397
|
2E9C95CD2822F43100677516 /* VectorsExtensions.swift */,
|
|
1300
1398
|
6DB3BDBB28245A14002A276D /* CGPointExtension.swift */,
|
|
1399
|
+
5721091E29119F3100169699 /* BezierPathRoundExtension.swift */,
|
|
1301
1400
|
);
|
|
1302
1401
|
path = Primitives;
|
|
1303
1402
|
sourceTree = "<group>";
|
|
@@ -1336,6 +1435,7 @@
|
|
|
1336
1435
|
2EAF59C227A0798700E00531 /* macOS */,
|
|
1337
1436
|
2EAF59C727A0798700E00531 /* LottieConfiguration.swift */,
|
|
1338
1437
|
2EAF59C827A0798700E00531 /* Animation */,
|
|
1438
|
+
6C4877E028FF20140005AF07 /* DotLottie */,
|
|
1339
1439
|
2EAF59CC27A0798700E00531 /* ImageProvider */,
|
|
1340
1440
|
2EAF59CE27A0798700E00531 /* iOS */,
|
|
1341
1441
|
2EAF59DA27A0798700E00531 /* Primitives */,
|
|
@@ -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,19 +1832,23 @@
|
|
|
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 */,
|
|
@@ -1737,6 +1891,7 @@
|
|
|
1737
1891
|
2E9C972F2822F43100677516 /* CustomPathAnimation.swift in Sources */,
|
|
1738
1892
|
2E9C97502822F43100677516 /* StringExtensions.swift in Sources */,
|
|
1739
1893
|
2EAF5AEF27A0798700E00531 /* AnimationKeypath.swift in Sources */,
|
|
1894
|
+
6CFA1082290B12B900873A98 /* ZipArchive.swift in Sources */,
|
|
1740
1895
|
2E9C973B2822F43100677516 /* LayerProperty.swift in Sources */,
|
|
1741
1896
|
2E9C95F72822F43100677516 /* Rectangle.swift in Sources */,
|
|
1742
1897
|
2E9C96812822F43100677516 /* FillRenderer.swift in Sources */,
|
|
@@ -1754,6 +1909,7 @@
|
|
|
1754
1909
|
2E9C96C92822F43100677516 /* ItemsExtension.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 */,
|
|
1759
1915
|
0887347828F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
|
|
@@ -1762,6 +1918,7 @@
|
|
|
1762
1918
|
2E9C97022822F43100677516 /* PreCompLayer.swift in Sources */,
|
|
1763
1919
|
2E9C96EA2822F43100677516 /* SolidLayer.swift in Sources */,
|
|
1764
1920
|
2EAF5AA127A0798700E00531 /* AnimationSubview.macOS.swift in Sources */,
|
|
1921
|
+
57210913291073E400169699 /* RoundedCorners.swift in Sources */,
|
|
1765
1922
|
2E9C96C62822F43100677516 /* GroupInterpolator.swift in Sources */,
|
|
1766
1923
|
2E9C96F02822F43100677516 /* TransformLayer.swift in Sources */,
|
|
1767
1924
|
2E9C96332822F43100677516 /* Font.swift in Sources */,
|
|
@@ -1776,6 +1933,7 @@
|
|
|
1776
1933
|
2E9C974A2822F43100677516 /* CGColor+RGB.swift in Sources */,
|
|
1777
1934
|
2E9C96572822F43100677516 /* ShapeCompositionLayer.swift in Sources */,
|
|
1778
1935
|
2E9C96F32822F43100677516 /* AnimationLayer.swift in Sources */,
|
|
1936
|
+
5721091B2910874A00169699 /* RoundedCornersNode.swift in Sources */,
|
|
1779
1937
|
2E9C95FA2822F43100677516 /* Star.swift in Sources */,
|
|
1780
1938
|
2E9C961E2822F43100677516 /* KeyedDecodingContainerExtensions.swift in Sources */,
|
|
1781
1939
|
2E9C96512822F43100677516 /* PreCompositionLayer.swift in Sources */,
|
|
@@ -1785,40 +1943,50 @@
|
|
|
1785
1943
|
2E9C96182822F43100677516 /* Mask.swift in Sources */,
|
|
1786
1944
|
2E9C97622822F43100677516 /* PathElement.swift in Sources */,
|
|
1787
1945
|
2E9C97142822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */,
|
|
1946
|
+
6CFA108E290B12B900873A98 /* FileManager+ZIP.swift in Sources */,
|
|
1788
1947
|
2E9C970E2822F43100677516 /* CALayer+fillBounds.swift in Sources */,
|
|
1789
1948
|
2E9C95FD2822F43100677516 /* SolidLayerModel.swift in Sources */,
|
|
1949
|
+
6CFA1088290B12B900873A98 /* ZipEntry.swift in Sources */,
|
|
1790
1950
|
2E9C970B2822F43100677516 /* ValueProviderStore.swift in Sources */,
|
|
1951
|
+
6C4877FF28FF20140005AF07 /* DotLottieAnimation.swift in Sources */,
|
|
1791
1952
|
2E9C97262822F43100677516 /* StrokeAnimation.swift in Sources */,
|
|
1792
1953
|
2E9C97382822F43100677516 /* VisibilityAnimation.swift in Sources */,
|
|
1793
1954
|
2EAF5AD727A0798700E00531 /* Vectors.swift in Sources */,
|
|
1794
1955
|
2E9C95E22822F43100677516 /* Group.swift in Sources */,
|
|
1795
|
-
2E9C97112822F43100677516 /* Keyframes+
|
|
1956
|
+
2E9C97112822F43100677516 /* Keyframes+combined.swift in Sources */,
|
|
1796
1957
|
0887347B28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
|
|
1797
1958
|
2EAF5AD127A0798700E00531 /* AnimatedControl.swift in Sources */,
|
|
1798
1959
|
2E9C966F2822F43100677516 /* LayerTextProvider.swift in Sources */,
|
|
1799
1960
|
2E9C97172822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
|
|
1961
|
+
6C4878602901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */,
|
|
1800
1962
|
2E9C95EE2822F43100677516 /* GradientFill.swift in Sources */,
|
|
1801
1963
|
2E9C95D92822F43100677516 /* Trim.swift in Sources */,
|
|
1802
1964
|
2E9C96C32822F43100677516 /* SingleValueProvider.swift in Sources */,
|
|
1803
1965
|
2E9C967B2822F43100677516 /* GradientFillRenderer.swift in Sources */,
|
|
1804
1966
|
2E9C97352822F43100677516 /* GradientAnimations.swift in Sources */,
|
|
1967
|
+
6C48780528FF20140005AF07 /* DotLottieUtils.swift in Sources */,
|
|
1805
1968
|
2E9C96B42822F43100677516 /* AnyNodeProperty.swift in Sources */,
|
|
1806
1969
|
2EAF5AF827A0798700E00531 /* FloatValueProvider.swift in Sources */,
|
|
1970
|
+
6C48784B29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */,
|
|
1807
1971
|
2E9C968D2822F43100677516 /* PassThroughOutputNode.swift in Sources */,
|
|
1808
1972
|
2EAF5AB627A0798700E00531 /* CompatibleAnimationKeypath.swift in Sources */,
|
|
1809
1973
|
2E9C96872822F43100677516 /* GroupOutputNode.swift in Sources */,
|
|
1810
1974
|
2E9C96692822F43100677516 /* InvertedMatteLayer.swift in Sources */,
|
|
1811
1975
|
2E9C975F2822F43100677516 /* ColorExtension.swift in Sources */,
|
|
1976
|
+
6C48785A2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */,
|
|
1812
1977
|
2E9C961B2822F43100677516 /* Marker.swift in Sources */,
|
|
1978
|
+
6C48785229017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */,
|
|
1813
1979
|
2E9C968A2822F43100677516 /* PathOutputNode.swift in Sources */,
|
|
1814
1980
|
2E9C96D22822F43100677516 /* PathNode.swift in Sources */,
|
|
1815
1981
|
2E9C96842822F43100677516 /* StrokeRenderer.swift in Sources */,
|
|
1816
1982
|
2E9C965A2822F43100677516 /* MaskContainerLayer.swift in Sources */,
|
|
1817
1983
|
2E9C96452822F43100677516 /* CompositionLayer.swift in Sources */,
|
|
1984
|
+
08FE934E28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */,
|
|
1818
1985
|
2E9C95F42822F43100677516 /* Stroke.swift in Sources */,
|
|
1819
1986
|
2E9C96722822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
|
|
1820
1987
|
2EAF5A9E27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
|
|
1821
1988
|
2E9C975C2822F43100677516 /* CompoundBezierPath.swift in Sources */,
|
|
1989
|
+
6C48785629017D1D0005AF07 /* DotLottieCache.swift in Sources */,
|
|
1822
1990
|
2E9C97532822F43100677516 /* DataExtension.swift in Sources */,
|
|
1823
1991
|
2E9C95DF2822F43100677516 /* Shape.swift in Sources */,
|
|
1824
1992
|
0887347528F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
|
|
@@ -1843,6 +2011,8 @@
|
|
|
1843
2011
|
2E9C96A82822F43100677516 /* FillNode.swift in Sources */,
|
|
1844
2012
|
2EAF5ACB27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
|
|
1845
2013
|
2E9C96CC2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
|
|
2014
|
+
5721091F29119F3100169699 /* BezierPathRoundExtension.swift in Sources */,
|
|
2015
|
+
6C48780228FF20140005AF07 /* DotLottieFile.swift in Sources */,
|
|
1846
2016
|
2EAF5AEC27A0798700E00531 /* LottieLogger.swift in Sources */,
|
|
1847
2017
|
2E9C976E2822F43100677516 /* KeyframeExtensions.swift in Sources */,
|
|
1848
2018
|
2E9C96392822F43100677516 /* PrecompAsset.swift in Sources */,
|
|
@@ -1852,8 +2022,10 @@
|
|
|
1852
2022
|
7E48BF602860D4FA00A39198 /* KeyframeGroup+Extensions.swift in Sources */,
|
|
1853
2023
|
2E9C962D2822F43100677516 /* Glyph.swift in Sources */,
|
|
1854
2024
|
2E9C96D52822F43100677516 /* RenderNode.swift in Sources */,
|
|
2025
|
+
6CFA1085290B12B900873A98 /* Data+Compression.swift in Sources */,
|
|
1855
2026
|
2E9C971D2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
|
|
1856
2027
|
2EAF5B0127A0798700E00531 /* PointValueProvider.swift in Sources */,
|
|
2028
|
+
6CFA107F290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */,
|
|
1857
2029
|
2EAF5AE027A0798700E00531 /* Keyframe.swift in Sources */,
|
|
1858
2030
|
2E9C969C2822F43100677516 /* StarNode.swift in Sources */,
|
|
1859
2031
|
A40460592832C52B00ACFEDC /* BlendMode+Filter.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,19 +2068,23 @@
|
|
|
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 */,
|
|
@@ -1949,6 +2127,7 @@
|
|
|
1949
2127
|
2E9C97302822F43100677516 /* CustomPathAnimation.swift in Sources */,
|
|
1950
2128
|
2E9C97512822F43100677516 /* StringExtensions.swift in Sources */,
|
|
1951
2129
|
2EAF5AF027A0798700E00531 /* AnimationKeypath.swift in Sources */,
|
|
2130
|
+
6CFA1083290B12B900873A98 /* ZipArchive.swift in Sources */,
|
|
1952
2131
|
2E9C973C2822F43100677516 /* LayerProperty.swift in Sources */,
|
|
1953
2132
|
2E9C95F82822F43100677516 /* Rectangle.swift in Sources */,
|
|
1954
2133
|
2E9C96822822F43100677516 /* FillRenderer.swift in Sources */,
|
|
@@ -1966,6 +2145,7 @@
|
|
|
1966
2145
|
2E9C96CA2822F43100677516 /* ItemsExtension.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 */,
|
|
1971
2151
|
0887347928F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
|
|
@@ -1974,6 +2154,7 @@
|
|
|
1974
2154
|
2E9C97032822F43100677516 /* PreCompLayer.swift in Sources */,
|
|
1975
2155
|
2E9C96EB2822F43100677516 /* SolidLayer.swift in Sources */,
|
|
1976
2156
|
2EAF5AA227A0798700E00531 /* AnimationSubview.macOS.swift in Sources */,
|
|
2157
|
+
57210914291073E400169699 /* RoundedCorners.swift in Sources */,
|
|
1977
2158
|
2E9C96C72822F43100677516 /* GroupInterpolator.swift in Sources */,
|
|
1978
2159
|
2E9C96F12822F43100677516 /* TransformLayer.swift in Sources */,
|
|
1979
2160
|
2E9C96342822F43100677516 /* Font.swift in Sources */,
|
|
@@ -1988,6 +2169,7 @@
|
|
|
1988
2169
|
2E9C974B2822F43100677516 /* CGColor+RGB.swift in Sources */,
|
|
1989
2170
|
2E9C96582822F43100677516 /* ShapeCompositionLayer.swift in Sources */,
|
|
1990
2171
|
2E9C96F42822F43100677516 /* AnimationLayer.swift in Sources */,
|
|
2172
|
+
5721091C2910874A00169699 /* RoundedCornersNode.swift in Sources */,
|
|
1991
2173
|
2E9C95FB2822F43100677516 /* Star.swift in Sources */,
|
|
1992
2174
|
2E9C961F2822F43100677516 /* KeyedDecodingContainerExtensions.swift in Sources */,
|
|
1993
2175
|
2E9C96522822F43100677516 /* PreCompositionLayer.swift in Sources */,
|
|
@@ -1997,40 +2179,50 @@
|
|
|
1997
2179
|
2E9C96192822F43100677516 /* Mask.swift in Sources */,
|
|
1998
2180
|
2E9C97632822F43100677516 /* PathElement.swift in Sources */,
|
|
1999
2181
|
2E9C97152822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */,
|
|
2182
|
+
6CFA108F290B12B900873A98 /* FileManager+ZIP.swift in Sources */,
|
|
2000
2183
|
2E9C970F2822F43100677516 /* CALayer+fillBounds.swift in Sources */,
|
|
2001
2184
|
2E9C95FE2822F43100677516 /* SolidLayerModel.swift in Sources */,
|
|
2185
|
+
6CFA1089290B12B900873A98 /* ZipEntry.swift in Sources */,
|
|
2002
2186
|
2E9C970C2822F43100677516 /* ValueProviderStore.swift in Sources */,
|
|
2187
|
+
6C48780028FF20140005AF07 /* DotLottieAnimation.swift in Sources */,
|
|
2003
2188
|
2E9C97272822F43100677516 /* StrokeAnimation.swift in Sources */,
|
|
2004
2189
|
2E9C97392822F43100677516 /* VisibilityAnimation.swift in Sources */,
|
|
2005
2190
|
2EAF5AD827A0798700E00531 /* Vectors.swift in Sources */,
|
|
2006
2191
|
2E9C95E32822F43100677516 /* Group.swift in Sources */,
|
|
2007
|
-
2E9C97122822F43100677516 /* Keyframes+
|
|
2192
|
+
2E9C97122822F43100677516 /* Keyframes+combined.swift in Sources */,
|
|
2008
2193
|
0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
|
|
2009
2194
|
2EAF5AD227A0798700E00531 /* AnimatedControl.swift in Sources */,
|
|
2010
2195
|
2E9C96702822F43100677516 /* LayerTextProvider.swift in Sources */,
|
|
2011
2196
|
2E9C97182822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
|
|
2197
|
+
6C4878612901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */,
|
|
2012
2198
|
2E9C95EF2822F43100677516 /* GradientFill.swift in Sources */,
|
|
2013
2199
|
2E9C95DA2822F43100677516 /* Trim.swift in Sources */,
|
|
2014
2200
|
2E9C96C42822F43100677516 /* SingleValueProvider.swift in Sources */,
|
|
2015
2201
|
2E9C967C2822F43100677516 /* GradientFillRenderer.swift in Sources */,
|
|
2016
2202
|
2E9C97362822F43100677516 /* GradientAnimations.swift in Sources */,
|
|
2203
|
+
6C48780628FF20140005AF07 /* DotLottieUtils.swift in Sources */,
|
|
2017
2204
|
2E9C96B52822F43100677516 /* AnyNodeProperty.swift in Sources */,
|
|
2018
2205
|
2EAF5AF927A0798700E00531 /* FloatValueProvider.swift in Sources */,
|
|
2206
|
+
6C48784C29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */,
|
|
2019
2207
|
2E9C968E2822F43100677516 /* PassThroughOutputNode.swift in Sources */,
|
|
2020
2208
|
2EAF5AB727A0798700E00531 /* CompatibleAnimationKeypath.swift in Sources */,
|
|
2021
2209
|
2E9C96882822F43100677516 /* GroupOutputNode.swift in Sources */,
|
|
2022
2210
|
2E9C966A2822F43100677516 /* InvertedMatteLayer.swift in Sources */,
|
|
2023
2211
|
2E9C97602822F43100677516 /* ColorExtension.swift in Sources */,
|
|
2212
|
+
6C48785B2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */,
|
|
2024
2213
|
2E9C961C2822F43100677516 /* Marker.swift in Sources */,
|
|
2214
|
+
6C48785329017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */,
|
|
2025
2215
|
2E9C968B2822F43100677516 /* PathOutputNode.swift in Sources */,
|
|
2026
2216
|
2E9C96D32822F43100677516 /* PathNode.swift in Sources */,
|
|
2027
2217
|
2E9C96852822F43100677516 /* StrokeRenderer.swift in Sources */,
|
|
2028
2218
|
2E9C965B2822F43100677516 /* MaskContainerLayer.swift in Sources */,
|
|
2029
2219
|
2E9C96462822F43100677516 /* CompositionLayer.swift in Sources */,
|
|
2220
|
+
08FE934F28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */,
|
|
2030
2221
|
2E9C95F52822F43100677516 /* Stroke.swift in Sources */,
|
|
2031
2222
|
2E9C96732822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
|
|
2032
2223
|
2EAF5A9F27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
|
|
2033
2224
|
2E9C975D2822F43100677516 /* CompoundBezierPath.swift in Sources */,
|
|
2225
|
+
6C48785729017D1D0005AF07 /* DotLottieCache.swift in Sources */,
|
|
2034
2226
|
2E9C97542822F43100677516 /* DataExtension.swift in Sources */,
|
|
2035
2227
|
2E9C95E02822F43100677516 /* Shape.swift in Sources */,
|
|
2036
2228
|
0887347628F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
|
|
@@ -2055,6 +2247,8 @@
|
|
|
2055
2247
|
2E9C96A92822F43100677516 /* FillNode.swift in Sources */,
|
|
2056
2248
|
2EAF5ACC27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
|
|
2057
2249
|
2E9C96CD2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
|
|
2250
|
+
5721092029119F3100169699 /* BezierPathRoundExtension.swift in Sources */,
|
|
2251
|
+
6C48780328FF20140005AF07 /* DotLottieFile.swift in Sources */,
|
|
2058
2252
|
2EAF5AED27A0798700E00531 /* LottieLogger.swift in Sources */,
|
|
2059
2253
|
2E9C976F2822F43100677516 /* KeyframeExtensions.swift in Sources */,
|
|
2060
2254
|
2E9C963A2822F43100677516 /* PrecompAsset.swift in Sources */,
|
|
@@ -2064,8 +2258,10 @@
|
|
|
2064
2258
|
7E48BF612860D4FA00A39198 /* KeyframeGroup+Extensions.swift in Sources */,
|
|
2065
2259
|
2E9C962E2822F43100677516 /* Glyph.swift in Sources */,
|
|
2066
2260
|
2E9C96D62822F43100677516 /* RenderNode.swift in Sources */,
|
|
2261
|
+
6CFA1086290B12B900873A98 /* Data+Compression.swift in Sources */,
|
|
2067
2262
|
2E9C971E2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
|
|
2068
2263
|
2EAF5B0227A0798700E00531 /* PointValueProvider.swift in Sources */,
|
|
2264
|
+
6CFA1080290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */,
|
|
2069
2265
|
2EAF5AE127A0798700E00531 /* Keyframe.swift in Sources */,
|
|
2070
2266
|
2E9C969D2822F43100677516 /* StarNode.swift in Sources */,
|
|
2071
2267
|
A404605A2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
|
|
@@ -2085,19 +2281,23 @@
|
|
|
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 */,
|
|
@@ -2140,6 +2340,7 @@
|
|
|
2140
2340
|
2E9C97312822F43100677516 /* CustomPathAnimation.swift in Sources */,
|
|
2141
2341
|
2E9C97522822F43100677516 /* StringExtensions.swift in Sources */,
|
|
2142
2342
|
2EAF5AF127A0798700E00531 /* AnimationKeypath.swift in Sources */,
|
|
2343
|
+
6CFA1084290B12B900873A98 /* ZipArchive.swift in Sources */,
|
|
2143
2344
|
2E9C973D2822F43100677516 /* LayerProperty.swift in Sources */,
|
|
2144
2345
|
2E9C95F92822F43100677516 /* Rectangle.swift in Sources */,
|
|
2145
2346
|
2E9C96832822F43100677516 /* FillRenderer.swift in Sources */,
|
|
@@ -2157,6 +2358,7 @@
|
|
|
2157
2358
|
2E9C96CB2822F43100677516 /* ItemsExtension.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 */,
|
|
2162
2364
|
0887347A28F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
|
|
@@ -2165,6 +2367,7 @@
|
|
|
2165
2367
|
2E9C97042822F43100677516 /* PreCompLayer.swift in Sources */,
|
|
2166
2368
|
2E9C96EC2822F43100677516 /* SolidLayer.swift in Sources */,
|
|
2167
2369
|
2EAF5AA327A0798700E00531 /* AnimationSubview.macOS.swift in Sources */,
|
|
2370
|
+
57210915291073E400169699 /* RoundedCorners.swift in Sources */,
|
|
2168
2371
|
2E9C96C82822F43100677516 /* GroupInterpolator.swift in Sources */,
|
|
2169
2372
|
2E9C96F22822F43100677516 /* TransformLayer.swift in Sources */,
|
|
2170
2373
|
2E9C96352822F43100677516 /* Font.swift in Sources */,
|
|
@@ -2179,6 +2382,7 @@
|
|
|
2179
2382
|
2E9C974C2822F43100677516 /* CGColor+RGB.swift in Sources */,
|
|
2180
2383
|
2E9C96592822F43100677516 /* ShapeCompositionLayer.swift in Sources */,
|
|
2181
2384
|
2E9C96F52822F43100677516 /* AnimationLayer.swift in Sources */,
|
|
2385
|
+
5721091D2910874A00169699 /* RoundedCornersNode.swift in Sources */,
|
|
2182
2386
|
2E9C95FC2822F43100677516 /* Star.swift in Sources */,
|
|
2183
2387
|
2E9C96202822F43100677516 /* KeyedDecodingContainerExtensions.swift in Sources */,
|
|
2184
2388
|
2E9C96532822F43100677516 /* PreCompositionLayer.swift in Sources */,
|
|
@@ -2188,36 +2392,45 @@
|
|
|
2188
2392
|
2E9C961A2822F43100677516 /* Mask.swift in Sources */,
|
|
2189
2393
|
2E9C97642822F43100677516 /* PathElement.swift in Sources */,
|
|
2190
2394
|
2E9C97162822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */,
|
|
2395
|
+
6CFA1090290B12B900873A98 /* FileManager+ZIP.swift in Sources */,
|
|
2191
2396
|
2E9C97102822F43100677516 /* CALayer+fillBounds.swift in Sources */,
|
|
2192
2397
|
2E9C95FF2822F43100677516 /* SolidLayerModel.swift in Sources */,
|
|
2398
|
+
6CFA108A290B12B900873A98 /* ZipEntry.swift in Sources */,
|
|
2193
2399
|
2E9C970D2822F43100677516 /* ValueProviderStore.swift in Sources */,
|
|
2400
|
+
6C48780128FF20140005AF07 /* DotLottieAnimation.swift in Sources */,
|
|
2194
2401
|
2E9C97282822F43100677516 /* StrokeAnimation.swift in Sources */,
|
|
2195
2402
|
2E9C973A2822F43100677516 /* VisibilityAnimation.swift in Sources */,
|
|
2196
2403
|
2EAF5AD927A0798700E00531 /* Vectors.swift in Sources */,
|
|
2197
2404
|
2E9C95E42822F43100677516 /* Group.swift in Sources */,
|
|
2198
|
-
2E9C97132822F43100677516 /* Keyframes+
|
|
2405
|
+
2E9C97132822F43100677516 /* Keyframes+combined.swift in Sources */,
|
|
2199
2406
|
0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
|
|
2200
2407
|
2EAF5AD327A0798700E00531 /* AnimatedControl.swift in Sources */,
|
|
2201
2408
|
2E9C96712822F43100677516 /* LayerTextProvider.swift in Sources */,
|
|
2202
2409
|
2E9C97192822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
|
|
2410
|
+
6C4878622901D8C70005AF07 /* DotLottieImageProvider.swift in Sources */,
|
|
2203
2411
|
2E9C95F02822F43100677516 /* GradientFill.swift in Sources */,
|
|
2204
2412
|
2E9C95DB2822F43100677516 /* Trim.swift in Sources */,
|
|
2205
2413
|
2E9C96C52822F43100677516 /* SingleValueProvider.swift in Sources */,
|
|
2206
2414
|
2E9C967D2822F43100677516 /* GradientFillRenderer.swift in Sources */,
|
|
2207
2415
|
2E9C97372822F43100677516 /* GradientAnimations.swift in Sources */,
|
|
2416
|
+
6C48780728FF20140005AF07 /* DotLottieUtils.swift in Sources */,
|
|
2208
2417
|
2E9C96B62822F43100677516 /* AnyNodeProperty.swift in Sources */,
|
|
2209
2418
|
2EAF5AFA27A0798700E00531 /* FloatValueProvider.swift in Sources */,
|
|
2419
|
+
6C48784D29008ACF0005AF07 /* DotLottieConfiguration.swift in Sources */,
|
|
2210
2420
|
2E9C968F2822F43100677516 /* PassThroughOutputNode.swift in Sources */,
|
|
2211
2421
|
2EAF5AB827A0798700E00531 /* CompatibleAnimationKeypath.swift in Sources */,
|
|
2212
2422
|
2E9C96892822F43100677516 /* GroupOutputNode.swift in Sources */,
|
|
2213
2423
|
2E9C966B2822F43100677516 /* InvertedMatteLayer.swift in Sources */,
|
|
2214
2424
|
2E9C97612822F43100677516 /* ColorExtension.swift in Sources */,
|
|
2425
|
+
6C48785C2901811D0005AF07 /* DotLottieFileHelpers.swift in Sources */,
|
|
2215
2426
|
2E9C961D2822F43100677516 /* Marker.swift in Sources */,
|
|
2427
|
+
6C48785429017CBF0005AF07 /* DotLottieCacheProvider.swift in Sources */,
|
|
2216
2428
|
2E9C968C2822F43100677516 /* PathOutputNode.swift in Sources */,
|
|
2217
2429
|
2E9C96D42822F43100677516 /* PathNode.swift in Sources */,
|
|
2218
2430
|
2E9C96862822F43100677516 /* StrokeRenderer.swift in Sources */,
|
|
2219
2431
|
2E9C965C2822F43100677516 /* MaskContainerLayer.swift in Sources */,
|
|
2220
2432
|
2E9C96472822F43100677516 /* CompositionLayer.swift in Sources */,
|
|
2433
|
+
08FE935028F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */,
|
|
2221
2434
|
2E9C95F62822F43100677516 /* Stroke.swift in Sources */,
|
|
2222
2435
|
2E9C96742822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
|
|
2223
2436
|
2EAF5AA027A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
|
|
@@ -2226,6 +2439,7 @@
|
|
|
2226
2439
|
2E9C95E12822F43100677516 /* Shape.swift in Sources */,
|
|
2227
2440
|
0887347728F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
|
|
2228
2441
|
2E9C96022822F43100677516 /* LayerModel.swift in Sources */,
|
|
2442
|
+
6CC544932902FF7D00212722 /* DotLottieCache.swift in Sources */,
|
|
2229
2443
|
2E9C97672822F43100677516 /* CurveVertex.swift in Sources */,
|
|
2230
2444
|
2E9C964A2822F43100677516 /* NullCompositionLayer.swift in Sources */,
|
|
2231
2445
|
2EAF5B0027A0798700E00531 /* GradientValueProvider.swift in Sources */,
|
|
@@ -2246,6 +2460,8 @@
|
|
|
2246
2460
|
2E9C96AA2822F43100677516 /* FillNode.swift in Sources */,
|
|
2247
2461
|
2EAF5ACD27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
|
|
2248
2462
|
2E9C96CE2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
|
|
2463
|
+
6C48780428FF20140005AF07 /* DotLottieFile.swift in Sources */,
|
|
2464
|
+
5721092129119F3100169699 /* BezierPathRoundExtension.swift in Sources */,
|
|
2249
2465
|
2EAF5AEE27A0798700E00531 /* LottieLogger.swift in Sources */,
|
|
2250
2466
|
2E9C97702822F43100677516 /* KeyframeExtensions.swift in Sources */,
|
|
2251
2467
|
2E9C963B2822F43100677516 /* PrecompAsset.swift in Sources */,
|
|
@@ -2255,8 +2471,10 @@
|
|
|
2255
2471
|
7E48BF622860D4FA00A39198 /* KeyframeGroup+Extensions.swift in Sources */,
|
|
2256
2472
|
2E9C962F2822F43100677516 /* Glyph.swift in Sources */,
|
|
2257
2473
|
2E9C96D72822F43100677516 /* RenderNode.swift in Sources */,
|
|
2474
|
+
6CFA1087290B12B900873A98 /* Data+Compression.swift in Sources */,
|
|
2258
2475
|
2E9C971F2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
|
|
2259
2476
|
2EAF5B0327A0798700E00531 /* PointValueProvider.swift in Sources */,
|
|
2477
|
+
6CFA1081290B12B900873A98 /* ZipEntry+Serialization.swift in Sources */,
|
|
2260
2478
|
2EAF5AE227A0798700E00531 /* Keyframe.swift in Sources */,
|
|
2261
2479
|
2E9C969E2822F43100677516 /* StarNode.swift in Sources */,
|
|
2262
2480
|
A404605B2832C52B00ACFEDC /* BlendMode+Filter.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;
|