lottie-ios 3.2.3 → 3.4.2
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/.github/actions/setup/action.yml +32 -0
- package/.github/issue_template.md +6 -23
- package/.github/workflows/main.yml +98 -0
- package/.github/workflows/stale_issues.yml +17 -0
- package/.spi.yml +6 -0
- package/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +7 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/.swiftpm/xcode/xcuserdata/{brandonwithrow.xcuserdatad → cal.xcuserdatad}/xcschemes/xcschememanagement.plist +25 -15
- package/.swiftpm/xcode/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/Gemfile +4 -0
- package/Gemfile.lock +102 -0
- package/Lottie.xcodeproj/project.pbxproj +2011 -1972
- package/Lottie.xcodeproj/project.xcworkspace/contents.xcworkspacedata +1 -1
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_iOS.xcscheme → Lottie (iOS).xcscheme } +15 -18
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_tvOS.xcscheme → Lottie (macOS).xcscheme } +5 -18
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_macOS.xcscheme → Lottie (tvOS).xcscheme } +5 -18
- package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
- package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +24 -0
- package/Lottie.xcworkspace/contents.xcworkspacedata +10 -0
- package/Lottie.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +34 -0
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/{Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad → Lottie.xcworkspace/xcuserdata/cal.xcuserdatad}/xcdebugger/Breakpoints_v2.xcbkptlist +2 -2
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +153 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +22 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +138 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
- package/Package.swift +5 -15
- package/README.md +40 -60
- package/Rakefile +160 -0
- package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +81 -0
- package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +447 -0
- package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +81 -0
- package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +41 -0
- package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +55 -0
- package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +210 -0
- package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +229 -0
- package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +52 -0
- package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +58 -0
- package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +257 -0
- package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +124 -0
- package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +73 -0
- package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +205 -0
- package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +37 -0
- package/Sources/Private/CoreAnimation/CompatibilityTracker.swift +130 -0
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +497 -0
- package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +35 -0
- package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +37 -0
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +154 -0
- package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +83 -0
- package/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift +33 -0
- package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +88 -0
- package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +167 -0
- package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +94 -0
- package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +79 -0
- package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +64 -0
- package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +138 -0
- package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +140 -0
- package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +85 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +315 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +390 -0
- package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +47 -0
- package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +91 -0
- package/Sources/Private/CoreAnimation/Layers/TransformLayer.swift +11 -0
- package/Sources/Private/CoreAnimation/ValueProviderStore.swift +139 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/CompositionLayer.swift +94 -86
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ImageCompositionLayer.swift +24 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/MaskContainerLayer.swift +75 -54
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/NullCompositionLayer.swift +5 -5
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/PreCompositionLayer.swift +59 -43
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ShapeCompositionLayer.swift +22 -20
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/SolidCompositionLayer.swift +26 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/TextCompositionLayer.swift +42 -36
- package/{lottie-swift/src/Private/LayerContainers/AnimationContainer.swift → Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift} +200 -140
- package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +47 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/CompositionLayersInitializer.swift +33 -24
- package/{lottie-swift/src/Private/LayerContainers/Utility/TextLayer.swift → Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift} +149 -106
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/InvertedMatteLayer.swift +26 -24
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +41 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerImageProvider.swift +20 -16
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +40 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerTransformNode.swift +82 -67
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Extensions/ItemsExtension.swift +9 -4
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/NodeProperty.swift +29 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift +16 -10
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift +6 -6
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +5 -5
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +10 -8
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueContainer.swift +25 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +23 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift +22 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +110 -79
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +22 -16
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +19 -15
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +22 -20
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +22 -23
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +247 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +30 -24
- package/{lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift → Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift} +93 -66
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +23 -19
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +139 -0
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +170 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +95 -58
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +42 -29
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +108 -69
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +155 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +51 -37
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +57 -42
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +66 -58
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +169 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +138 -119
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/AnimatorNode.swift +80 -79
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/PathNode.swift +5 -3
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/RenderNode.swift +22 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +27 -24
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +34 -25
- package/Sources/Private/Model/Animation.swift +160 -0
- package/Sources/Private/Model/Assets/Asset.swift +43 -0
- package/{lottie-swift/src → Sources}/Private/Model/Assets/AssetLibrary.swift +40 -13
- package/Sources/Private/Model/Assets/ImageAsset.swift +112 -0
- package/{lottie-swift/src → Sources}/Private/Model/Assets/PrecompAsset.swift +20 -10
- package/Sources/Private/Model/DictionaryInitializable.swift +67 -0
- package/Sources/Private/Model/Extensions/Bundle.swift +34 -0
- package/{lottie-swift/src → Sources}/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +8 -4
- package/Sources/Private/Model/Keyframes/KeyframeData.swift +113 -0
- package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +222 -0
- package/{lottie-swift/src → Sources}/Private/Model/Layers/ImageLayerModel.swift +21 -11
- package/Sources/Private/Model/Layers/LayerModel.swift +228 -0
- package/{lottie-swift/src → Sources}/Private/Model/Layers/PreCompLayerModel.swift +39 -22
- package/{lottie-swift/src → Sources}/Private/Model/Layers/ShapeLayerModel.swift +23 -12
- package/{lottie-swift/src → Sources}/Private/Model/Layers/SolidLayerModel.swift +31 -19
- package/{lottie-swift/src → Sources}/Private/Model/Layers/TextLayerModel.swift +33 -19
- package/Sources/Private/Model/Objects/DashPattern.swift +44 -0
- package/Sources/Private/Model/Objects/Marker.swift +33 -0
- package/Sources/Private/Model/Objects/Mask.swift +80 -0
- package/Sources/Private/Model/Objects/Transform.swift +179 -0
- package/Sources/Private/Model/ShapeItems/Ellipse.swift +74 -0
- package/Sources/Private/Model/ShapeItems/Fill.swift +74 -0
- package/Sources/Private/Model/ShapeItems/GradientFill.swift +137 -0
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +185 -0
- package/Sources/Private/Model/ShapeItems/Group.swift +48 -0
- package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Merge.swift +29 -12
- package/Sources/Private/Model/ShapeItems/Rectangle.swift +72 -0
- package/Sources/Private/Model/ShapeItems/Repeater.swift +135 -0
- package/Sources/Private/Model/ShapeItems/Shape.swift +56 -0
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +163 -0
- package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +135 -0
- package/Sources/Private/Model/ShapeItems/Star.swift +131 -0
- package/Sources/Private/Model/ShapeItems/Stroke.swift +101 -0
- package/Sources/Private/Model/ShapeItems/Trim.swift +77 -0
- package/Sources/Private/Model/Text/Font.swift +61 -0
- package/{lottie-swift/src → Sources}/Private/Model/Text/Glyph.swift +63 -39
- package/Sources/Private/Model/Text/TextAnimator.swift +164 -0
- package/Sources/Private/Model/Text/TextDocument.swift +123 -0
- package/Sources/Private/RootAnimationLayer.swift +51 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Debugging/AnimatorNodeDebugging.swift +7 -7
- package/{lottie-swift/src → Sources}/Private/Utility/Debugging/LayerDebugging.swift +72 -48
- package/Sources/Private/Utility/Debugging/TestHelpers.swift +10 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Extensions/AnimationKeypathExtension.swift +69 -59
- package/Sources/Private/Utility/Extensions/BlendMode+Filter.swift +31 -0
- package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +22 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Extensions/CGFloatExtensions.swift +70 -67
- package/Sources/Private/Utility/Extensions/DataExtension.swift +27 -0
- package/Sources/Private/Utility/Extensions/MathKit.swift +450 -0
- package/Sources/Private/Utility/Extensions/StringExtensions.swift +38 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Helpers/AnimationContext.swift +42 -16
- package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +134 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Interpolatable/KeyframeExtensions.swift +13 -10
- package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +59 -0
- package/{lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueProviders → Sources/Private/Utility/Interpolatable}/KeyframeInterpolator.swift +125 -108
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/BezierPath.swift +229 -143
- package/Sources/Private/Utility/Primitives/CGPointExtension.swift +35 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/ColorExtension.swift +46 -14
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/CompoundBezierPath.swift +58 -49
- package/Sources/Private/Utility/Primitives/CurveVertex.swift +184 -0
- package/Sources/Private/Utility/Primitives/PathElement.swift +75 -0
- package/Sources/Private/Utility/Primitives/UnitBezier.swift +115 -0
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +341 -0
- package/Sources/Public/Animation/AnimationPublic.swift +266 -0
- package/Sources/Public/Animation/AnimationView.swift +1335 -0
- package/Sources/Public/Animation/AnimationViewInitializers.swift +109 -0
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +22 -0
- package/{lottie-swift/src → Sources}/Public/AnimationCache/LRUAnimationCache.swift +22 -18
- package/Sources/Public/DynamicProperties/AnimationKeypath.swift +49 -0
- package/Sources/Public/DynamicProperties/AnyValueProvider.swift +132 -0
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +54 -36
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +40 -36
- package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +123 -0
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +40 -35
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +40 -35
- package/{lottie-swift/src → Sources}/Public/FontProvider/AnimationFontProvider.swift +15 -8
- package/Sources/Public/ImageProvider/AnimationImageProvider.swift +21 -0
- package/Sources/Public/Keyframes/Interpolatable.swift +253 -0
- package/Sources/Public/Keyframes/Keyframe.swift +92 -0
- package/Sources/Public/Logging/LottieLogger.swift +137 -0
- package/Sources/Public/LottieConfiguration.swift +143 -0
- package/{lottie-swift/src → Sources}/Public/Primitives/AnimationTime.swift +1 -1
- package/{lottie-swift/src → Sources}/Public/Primitives/Color.swift +10 -6
- package/{lottie-swift/src → Sources}/Public/Primitives/Vectors.swift +13 -12
- package/Sources/Public/TextProvider/AnimationTextProvider.swift +53 -0
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedButton.swift +42 -26
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedControl.swift +100 -91
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedSwitch.swift +128 -94
- package/{lottie-swift/src → Sources}/Public/iOS/AnimationSubview.swift +3 -3
- package/Sources/Public/iOS/AnimationViewBase.swift +78 -0
- package/{lottie-swift/src → Sources}/Public/iOS/BundleImageProvider.swift +36 -34
- package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +4 -0
- package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationView.swift +38 -29
- package/{lottie-swift/src → Sources}/Public/iOS/FilepathImageProvider.swift +24 -21
- package/{lottie-swift/src → Sources}/Public/iOS/UIColorExtension.swift +4 -4
- package/{lottie-swift/src/Public/MacOS/AnimationSubview.swift → Sources/Public/macOS/AnimationSubview.macOS.swift} +4 -5
- package/{lottie-swift/src/Public/MacOS/LottieView.swift → Sources/Public/macOS/AnimationViewBase.macOS.swift} +58 -50
- package/{lottie-swift/src/Public/MacOS/BundleImageProvider.swift → Sources/Public/macOS/BundleImageProvider.macOS.swift} +31 -32
- package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +67 -0
- package/Tests/AnimationKeypathTests.swift +103 -0
- package/Tests/AutomaticEngineTests.swift +57 -0
- package/Tests/BundleTests.swift +25 -0
- package/Tests/DataURLTests.swift +64 -0
- package/Tests/ParsingTests.swift +43 -0
- package/Tests/PerformanceTests.swift +214 -0
- package/Tests/Samples/9squares_AlBoardman.json +1 -0
- package/Tests/Samples/Boat_Loader.json +1 -0
- package/Tests/Samples/HamburgerArrow.json +1 -0
- package/Tests/Samples/IconTransitions.json +1 -0
- package/Tests/Samples/Images/dog.png +0 -0
- package/Tests/Samples/Issues/issue_1125.json +1 -0
- package/Tests/Samples/Issues/issue_1260.json +1 -0
- package/Tests/Samples/Issues/issue_1403.json +1 -0
- package/Tests/Samples/Issues/issue_1407.json +1 -0
- package/Tests/Samples/Issues/issue_1460.json +1 -0
- package/Tests/Samples/Issues/issue_1488.json +1 -0
- package/Tests/Samples/Issues/issue_1505.json +1 -0
- package/Tests/Samples/Issues/issue_1541.json +1 -0
- package/Tests/Samples/Issues/issue_1557.json +1 -0
- package/Tests/Samples/Issues/issue_1603.json +1 -0
- package/Tests/Samples/Issues/issue_1628.json +1 -0
- package/Tests/Samples/Issues/issue_1636.json +1 -0
- package/Tests/Samples/Issues/issue_1643.json +1 -0
- package/Tests/Samples/Issues/issue_1655.json +1 -0
- package/Tests/Samples/Issues/issue_1664.json +1 -0
- package/Tests/Samples/Issues/issue_1683.json +1 -0
- package/Tests/Samples/Issues/issue_1687.json +1 -0
- package/Tests/Samples/Issues/issue_1711.json +1 -0
- package/Tests/Samples/Issues/issue_1717.json +1 -0
- package/Tests/Samples/Issues/issue_769.json +1 -0
- package/Tests/Samples/Issues/issue_885.json +1 -0
- package/Tests/Samples/Issues/issue_965.json +1 -0
- package/Tests/Samples/Issues/pr_1536.json +1 -0
- package/Tests/Samples/Issues/pr_1563.json +8439 -0
- package/Tests/Samples/Issues/pr_1592.json +5527 -0
- package/Tests/Samples/Issues/pr_1599.json +738 -0
- package/Tests/Samples/Issues/pr_1604_1.json +1 -0
- package/Tests/Samples/Issues/pr_1604_2.json +1 -0
- package/Tests/Samples/Issues/pr_1632_1.json +1 -0
- package/Tests/Samples/Issues/pr_1632_2.json +1 -0
- package/Tests/Samples/Issues/pr_1686.json +513 -0
- package/Tests/Samples/Issues/pr_1698.json +1 -0
- package/Tests/Samples/Issues/pr_1699.json +1 -0
- package/Tests/Samples/LottieFiles/LICENSE.md +14 -0
- package/Tests/Samples/LottieFiles/bounce_strokes.json +1 -0
- package/Tests/Samples/LottieFiles/cactus.json +1 -0
- package/Tests/Samples/LottieFiles/dog_car_ride.json +1 -0
- package/Tests/Samples/LottieFiles/draft_icon.json +1 -0
- package/Tests/Samples/LottieFiles/fireworks.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_1.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_2.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_pill.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_shapes.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_square.json +1 -0
- package/Tests/Samples/LottieFiles/growth.json +1 -0
- package/Tests/Samples/LottieFiles/infinity_loader.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_1.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_2.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_3.json +1 -0
- package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +1 -0
- package/Tests/Samples/LottieFiles/settings_slider.json +1 -0
- package/Tests/Samples/LottieFiles/shop.json +1 -0
- package/Tests/Samples/LottieFiles/step_loader.json +1 -0
- package/Tests/Samples/LottieLogo1.json +1 -0
- package/Tests/Samples/LottieLogo1_masked.json +1 -0
- package/Tests/Samples/LottieLogo2.json +1 -0
- package/Tests/Samples/MotionCorpse_Jrcanest.json +1 -0
- package/Tests/Samples/Nonanimating/BasicLayers.json +1 -0
- package/Tests/Samples/Nonanimating/DisableNodesTest.json +1 -0
- package/Tests/Samples/Nonanimating/FirstText.json +1 -0
- package/Tests/Samples/Nonanimating/GeometryTransformTest.json +1 -0
- package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +1 -0
- package/Tests/Samples/Nonanimating/Text_Glyph.json +1 -0
- package/Tests/Samples/Nonanimating/Text_NoAnimation.json +1 -0
- package/Tests/Samples/Nonanimating/Text_NoGlyph.json +1 -0
- package/Tests/Samples/Nonanimating/Zoom.json +1 -0
- package/Tests/Samples/Nonanimating/_dog.json +1 -0
- package/Tests/Samples/Nonanimating/base64Test.json +1 -0
- package/Tests/Samples/Nonanimating/blend_mode_test.json +1 -0
- package/Tests/Samples/Nonanimating/keypathTest.json +1 -0
- package/Tests/Samples/Nonanimating/verifyLineHeight.json +1 -0
- package/Tests/Samples/PinJump.json +1 -0
- package/Tests/Samples/Switch.json +1 -0
- package/Tests/Samples/Switch_States.json +1 -0
- package/Tests/Samples/TwitterHeart.json +1 -0
- package/Tests/Samples/TwitterHeartButton.json +1 -0
- package/Tests/Samples/TypeFace/A.json +1 -0
- package/Tests/Samples/TypeFace/Apostrophe.json +1 -0
- package/Tests/Samples/TypeFace/B.json +1 -0
- package/Tests/Samples/TypeFace/BlinkingCursor.json +1 -0
- package/Tests/Samples/TypeFace/C.json +1 -0
- package/Tests/Samples/TypeFace/Colon.json +1 -0
- package/Tests/Samples/TypeFace/Comma.json +1 -0
- package/Tests/Samples/TypeFace/D.json +1 -0
- package/Tests/Samples/TypeFace/E.json +1 -0
- package/Tests/Samples/TypeFace/F.json +1 -0
- package/Tests/Samples/TypeFace/G.json +1 -0
- package/Tests/Samples/TypeFace/H.json +1 -0
- package/Tests/Samples/TypeFace/I.json +1 -0
- package/Tests/Samples/TypeFace/J.json +1 -0
- package/Tests/Samples/TypeFace/K.json +1 -0
- package/Tests/Samples/TypeFace/L.json +1 -0
- package/Tests/Samples/TypeFace/M.json +1 -0
- package/Tests/Samples/TypeFace/N.json +1 -0
- package/Tests/Samples/TypeFace/O.json +1 -0
- package/Tests/Samples/TypeFace/P.json +1 -0
- package/Tests/Samples/TypeFace/Q.json +1 -0
- package/Tests/Samples/TypeFace/R.json +1 -0
- package/Tests/Samples/TypeFace/S.json +1 -0
- package/Tests/Samples/TypeFace/T.json +1 -0
- package/Tests/Samples/TypeFace/U.json +1 -0
- package/Tests/Samples/TypeFace/V.json +1 -0
- package/Tests/Samples/TypeFace/W.json +1 -0
- package/Tests/Samples/TypeFace/X.json +1 -0
- package/Tests/Samples/TypeFace/Y.json +1 -0
- package/Tests/Samples/TypeFace/Z.json +1 -0
- package/Tests/Samples/Watermelon.json +1 -0
- package/Tests/Samples/setValueTest.json +1 -0
- package/Tests/Samples/timeremap.json +1 -0
- package/Tests/Samples/vcTransition1.json +1 -0
- package/Tests/Samples/vcTransition2.json +1 -0
- package/Tests/SnapshotConfiguration.swift +158 -0
- package/Tests/SnapshotTests.swift +265 -0
- package/Tests/Utils/Bundle+Module.swift +30 -0
- package/Tests/Utils/HardcodedFontProvider.swift +19 -0
- package/Tests/Utils/HardcodedImageProvider.swift +23 -0
- package/Tests/Utils/Snapshotting+presentationLayer.swift +47 -0
- package/Tests/ValueProvidersTests.swift +27 -0
- package/lottie-ios.podspec +12 -12
- package/package.json +1 -1
- package/script/test-carthage/Cartfile +1 -0
- package/script/test-carthage/Cartfile.resolved +1 -0
- package/script/test-carthage/CarthageTest/AppDelegate.swift +26 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/Contents.json +6 -0
- package/script/test-carthage/CarthageTest/Base.lproj/LaunchScreen.storyboard +25 -0
- package/script/test-carthage/CarthageTest/Base.lproj/Main.storyboard +24 -0
- package/script/test-carthage/CarthageTest/Info.plist +66 -0
- package/script/test-carthage/CarthageTest/SceneDelegate.swift +10 -0
- package/script/test-carthage/CarthageTest/ViewController.swift +15 -0
- package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
- package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
- package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
- package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
- package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
- package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +532 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
- package/script/test-carthage/Mintfile +1 -0
- package/script/test-spm/LottieSPM.xcworkspace/contents.xcworkspacedata +7 -0
- package/script/test-spm/LottieSPM.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-spm/Mintfile +1 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie/Info.plist +0 -22
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/LottieLibraryMacOS.xcscheme +0 -80
- package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/xcschememanagement.plist +0 -57
- package/lottie-swift/Assets/.gitkeep +0 -0
- package/lottie-swift/src/Private/LayerContainers/Utility/LayerFontProvider.swift +0 -37
- package/lottie-swift/src/Private/LayerContainers/Utility/LayerTextProvider.swift +0 -36
- package/lottie-swift/src/Private/Model/Animation.swift +0 -107
- package/lottie-swift/src/Private/Model/Assets/Asset.swift +0 -27
- package/lottie-swift/src/Private/Model/Assets/ImageAsset.swift +0 -48
- package/lottie-swift/src/Private/Model/Keyframes/Keyframe.swift +0 -128
- package/lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift +0 -108
- package/lottie-swift/src/Private/Model/Layers/LayerModel.swift +0 -150
- package/lottie-swift/src/Private/Model/Objects/DashPattern.swift +0 -24
- package/lottie-swift/src/Private/Model/Objects/Marker.swift +0 -23
- package/lottie-swift/src/Private/Model/Objects/Mask.swift +0 -48
- package/lottie-swift/src/Private/Model/Objects/Transform.swift +0 -105
- package/lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift +0 -50
- package/lottie-swift/src/Private/Model/ShapeItems/FillI.swift +0 -49
- package/lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift +0 -86
- package/lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift +0 -125
- package/lottie-swift/src/Private/Model/ShapeItems/Group.swift +0 -32
- package/lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift +0 -50
- package/lottie-swift/src/Private/Model/ShapeItems/Repeater.swift +0 -80
- package/lottie-swift/src/Private/Model/ShapeItems/Shape.swift +0 -37
- package/lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift +0 -95
- package/lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift +0 -68
- package/lottie-swift/src/Private/Model/ShapeItems/Star.swift +0 -86
- package/lottie-swift/src/Private/Model/ShapeItems/Stroke.swift +0 -67
- package/lottie-swift/src/Private/Model/ShapeItems/Trim.swift +0 -53
- package/lottie-swift/src/Private/Model/Text/Font.swift +0 -35
- package/lottie-swift/src/Private/Model/Text/TextAnimator.swift +0 -99
- package/lottie-swift/src/Private/Model/Text/TextDocument.swift +0 -70
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +0 -109
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +0 -132
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +0 -141
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +0 -127
- package/lottie-swift/src/Private/Utility/Extensions/MathKit.swift +0 -539
- package/lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift +0 -32
- package/lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift +0 -18
- package/lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -170
- package/lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift +0 -177
- package/lottie-swift/src/Private/Utility/Primitives/PathElement.swift +0 -68
- package/lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift +0 -218
- package/lottie-swift/src/Public/Animation/AnimationPublic.swift +0 -196
- package/lottie-swift/src/Public/Animation/AnimationView.swift +0 -1006
- package/lottie-swift/src/Public/Animation/AnimationViewInitializers.swift +0 -83
- package/lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift +0 -24
- package/lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift +0 -46
- package/lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift +0 -29
- package/lottie-swift/src/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -114
- package/lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift +0 -23
- package/lottie-swift/src/Public/MacOS/FilepathImageProvider.swift +0 -67
- package/lottie-swift/src/Public/TextProvider/AnimationTextProvider.swift +0 -39
- package/lottie-swift/src/Public/iOS/LottieView.swift +0 -62
- package/lottie-swift-testing.podspec +0 -32
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>com.apple.security.app-sandbox</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>com.apple.security.files.user-selected.read-only</key>
|
|
8
|
+
<true/>
|
|
9
|
+
</dict>
|
|
10
|
+
</plist>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Created by Cal Stephens on 7/8/22.
|
|
2
|
+
// Copyright © 2022 Airbnb Inc. All rights reserved.
|
|
3
|
+
|
|
4
|
+
import Cocoa
|
|
5
|
+
import Lottie
|
|
6
|
+
|
|
7
|
+
class ViewController: NSViewController {
|
|
8
|
+
|
|
9
|
+
override func viewDidLoad() {
|
|
10
|
+
super.viewDidLoad()
|
|
11
|
+
let animationView = AnimationView()
|
|
12
|
+
view.addSubview(animationView)
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
}
|
|
@@ -0,0 +1,532 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 52;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
08B627792878AE70004526F1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B627782878AE70004526F1 /* AppDelegate.swift */; };
|
|
11
|
+
08B6277B2878AE70004526F1 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B6277A2878AE70004526F1 /* ViewController.swift */; };
|
|
12
|
+
08B6277D2878AE72004526F1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 08B6277C2878AE72004526F1 /* Assets.xcassets */; };
|
|
13
|
+
08B627802878AE72004526F1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 08B6277E2878AE72004526F1 /* Main.storyboard */; };
|
|
14
|
+
08B627852878B04E004526F1 /* Lottie.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */; };
|
|
15
|
+
08B627862878B04E004526F1 /* Lottie.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
|
16
|
+
2E6DBE0327723E0900EBD89E /* Lottie.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */; };
|
|
17
|
+
2E6DBE0427723E0900EBD89E /* Lottie.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
|
18
|
+
2ED64E5F2770FAB2006AA0F3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED64E5E2770FAB2006AA0F3 /* AppDelegate.swift */; };
|
|
19
|
+
2ED64E612770FAB2006AA0F3 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED64E602770FAB2006AA0F3 /* SceneDelegate.swift */; };
|
|
20
|
+
2ED64E632770FAB2006AA0F3 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED64E622770FAB2006AA0F3 /* ViewController.swift */; };
|
|
21
|
+
2ED64E662770FAB2006AA0F3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2ED64E642770FAB2006AA0F3 /* Main.storyboard */; };
|
|
22
|
+
2ED64E682770FAB3006AA0F3 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2ED64E672770FAB3006AA0F3 /* Assets.xcassets */; };
|
|
23
|
+
2ED64E6B2770FAB3006AA0F3 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2ED64E692770FAB3006AA0F3 /* LaunchScreen.storyboard */; };
|
|
24
|
+
/* End PBXBuildFile section */
|
|
25
|
+
|
|
26
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
27
|
+
08B627872878B04E004526F1 /* Embed Frameworks */ = {
|
|
28
|
+
isa = PBXCopyFilesBuildPhase;
|
|
29
|
+
buildActionMask = 2147483647;
|
|
30
|
+
dstPath = "";
|
|
31
|
+
dstSubfolderSpec = 10;
|
|
32
|
+
files = (
|
|
33
|
+
08B627862878B04E004526F1 /* Lottie.xcframework in Embed Frameworks */,
|
|
34
|
+
);
|
|
35
|
+
name = "Embed Frameworks";
|
|
36
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
37
|
+
};
|
|
38
|
+
2E6DBE0527723E0900EBD89E /* Embed Frameworks */ = {
|
|
39
|
+
isa = PBXCopyFilesBuildPhase;
|
|
40
|
+
buildActionMask = 2147483647;
|
|
41
|
+
dstPath = "";
|
|
42
|
+
dstSubfolderSpec = 10;
|
|
43
|
+
files = (
|
|
44
|
+
2E6DBE0427723E0900EBD89E /* Lottie.xcframework in Embed Frameworks */,
|
|
45
|
+
);
|
|
46
|
+
name = "Embed Frameworks";
|
|
47
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
48
|
+
};
|
|
49
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
50
|
+
|
|
51
|
+
/* Begin PBXFileReference section */
|
|
52
|
+
08B627762878AE70004526F1 /* CarthageTest-macOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "CarthageTest-macOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
53
|
+
08B627782878AE70004526F1 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
54
|
+
08B6277A2878AE70004526F1 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
|
55
|
+
08B6277C2878AE72004526F1 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
56
|
+
08B6277F2878AE72004526F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
57
|
+
08B627812878AE72004526F1 /* CarthageTest_macOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = CarthageTest_macOS.entitlements; sourceTree = "<group>"; };
|
|
58
|
+
2ED64E5B2770FAB2006AA0F3 /* CarthageTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CarthageTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
59
|
+
2ED64E5E2770FAB2006AA0F3 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
60
|
+
2ED64E602770FAB2006AA0F3 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
|
|
61
|
+
2ED64E622770FAB2006AA0F3 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
|
62
|
+
2ED64E652770FAB2006AA0F3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
63
|
+
2ED64E672770FAB3006AA0F3 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
64
|
+
2ED64E6A2770FAB3006AA0F3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
65
|
+
2ED64E6C2770FAB3006AA0F3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
66
|
+
2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Lottie.xcframework; path = Carthage/Build/Lottie.xcframework; sourceTree = "<group>"; };
|
|
67
|
+
/* End PBXFileReference section */
|
|
68
|
+
|
|
69
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
70
|
+
08B627732878AE70004526F1 /* Frameworks */ = {
|
|
71
|
+
isa = PBXFrameworksBuildPhase;
|
|
72
|
+
buildActionMask = 2147483647;
|
|
73
|
+
files = (
|
|
74
|
+
08B627852878B04E004526F1 /* Lottie.xcframework in Frameworks */,
|
|
75
|
+
);
|
|
76
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
77
|
+
};
|
|
78
|
+
2ED64E582770FAB2006AA0F3 /* Frameworks */ = {
|
|
79
|
+
isa = PBXFrameworksBuildPhase;
|
|
80
|
+
buildActionMask = 2147483647;
|
|
81
|
+
files = (
|
|
82
|
+
2E6DBE0327723E0900EBD89E /* Lottie.xcframework in Frameworks */,
|
|
83
|
+
);
|
|
84
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
85
|
+
};
|
|
86
|
+
/* End PBXFrameworksBuildPhase section */
|
|
87
|
+
|
|
88
|
+
/* Begin PBXGroup section */
|
|
89
|
+
08B627772878AE70004526F1 /* CarthageTest-macOS */ = {
|
|
90
|
+
isa = PBXGroup;
|
|
91
|
+
children = (
|
|
92
|
+
08B627782878AE70004526F1 /* AppDelegate.swift */,
|
|
93
|
+
08B6277A2878AE70004526F1 /* ViewController.swift */,
|
|
94
|
+
08B6277C2878AE72004526F1 /* Assets.xcassets */,
|
|
95
|
+
08B6277E2878AE72004526F1 /* Main.storyboard */,
|
|
96
|
+
08B627812878AE72004526F1 /* CarthageTest_macOS.entitlements */,
|
|
97
|
+
);
|
|
98
|
+
path = "CarthageTest-macOS";
|
|
99
|
+
sourceTree = "<group>";
|
|
100
|
+
};
|
|
101
|
+
2ED64E522770FAB2006AA0F3 = {
|
|
102
|
+
isa = PBXGroup;
|
|
103
|
+
children = (
|
|
104
|
+
2ED64E5D2770FAB2006AA0F3 /* CarthageTest */,
|
|
105
|
+
08B627772878AE70004526F1 /* CarthageTest-macOS */,
|
|
106
|
+
2ED64E5C2770FAB2006AA0F3 /* Products */,
|
|
107
|
+
2ED64E722770FABF006AA0F3 /* Frameworks */,
|
|
108
|
+
);
|
|
109
|
+
sourceTree = "<group>";
|
|
110
|
+
};
|
|
111
|
+
2ED64E5C2770FAB2006AA0F3 /* Products */ = {
|
|
112
|
+
isa = PBXGroup;
|
|
113
|
+
children = (
|
|
114
|
+
2ED64E5B2770FAB2006AA0F3 /* CarthageTest.app */,
|
|
115
|
+
08B627762878AE70004526F1 /* CarthageTest-macOS.app */,
|
|
116
|
+
);
|
|
117
|
+
name = Products;
|
|
118
|
+
sourceTree = "<group>";
|
|
119
|
+
};
|
|
120
|
+
2ED64E5D2770FAB2006AA0F3 /* CarthageTest */ = {
|
|
121
|
+
isa = PBXGroup;
|
|
122
|
+
children = (
|
|
123
|
+
2ED64E5E2770FAB2006AA0F3 /* AppDelegate.swift */,
|
|
124
|
+
2ED64E602770FAB2006AA0F3 /* SceneDelegate.swift */,
|
|
125
|
+
2ED64E622770FAB2006AA0F3 /* ViewController.swift */,
|
|
126
|
+
2ED64E642770FAB2006AA0F3 /* Main.storyboard */,
|
|
127
|
+
2ED64E672770FAB3006AA0F3 /* Assets.xcassets */,
|
|
128
|
+
2ED64E692770FAB3006AA0F3 /* LaunchScreen.storyboard */,
|
|
129
|
+
2ED64E6C2770FAB3006AA0F3 /* Info.plist */,
|
|
130
|
+
);
|
|
131
|
+
path = CarthageTest;
|
|
132
|
+
sourceTree = "<group>";
|
|
133
|
+
};
|
|
134
|
+
2ED64E722770FABF006AA0F3 /* Frameworks */ = {
|
|
135
|
+
isa = PBXGroup;
|
|
136
|
+
children = (
|
|
137
|
+
2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */,
|
|
138
|
+
);
|
|
139
|
+
name = Frameworks;
|
|
140
|
+
sourceTree = "<group>";
|
|
141
|
+
};
|
|
142
|
+
/* End PBXGroup section */
|
|
143
|
+
|
|
144
|
+
/* Begin PBXNativeTarget section */
|
|
145
|
+
08B627752878AE70004526F1 /* CarthageTest-macOS */ = {
|
|
146
|
+
isa = PBXNativeTarget;
|
|
147
|
+
buildConfigurationList = 08B627842878AE72004526F1 /* Build configuration list for PBXNativeTarget "CarthageTest-macOS" */;
|
|
148
|
+
buildPhases = (
|
|
149
|
+
08B627722878AE70004526F1 /* Sources */,
|
|
150
|
+
08B627732878AE70004526F1 /* Frameworks */,
|
|
151
|
+
08B627742878AE70004526F1 /* Resources */,
|
|
152
|
+
08B627872878B04E004526F1 /* Embed Frameworks */,
|
|
153
|
+
);
|
|
154
|
+
buildRules = (
|
|
155
|
+
);
|
|
156
|
+
dependencies = (
|
|
157
|
+
);
|
|
158
|
+
name = "CarthageTest-macOS";
|
|
159
|
+
productName = "CarthageTest-macOS";
|
|
160
|
+
productReference = 08B627762878AE70004526F1 /* CarthageTest-macOS.app */;
|
|
161
|
+
productType = "com.apple.product-type.application";
|
|
162
|
+
};
|
|
163
|
+
2ED64E5A2770FAB2006AA0F3 /* CarthageTest */ = {
|
|
164
|
+
isa = PBXNativeTarget;
|
|
165
|
+
buildConfigurationList = 2ED64E6F2770FAB3006AA0F3 /* Build configuration list for PBXNativeTarget "CarthageTest" */;
|
|
166
|
+
buildPhases = (
|
|
167
|
+
2ED64E572770FAB2006AA0F3 /* Sources */,
|
|
168
|
+
2ED64E582770FAB2006AA0F3 /* Frameworks */,
|
|
169
|
+
2ED64E592770FAB2006AA0F3 /* Resources */,
|
|
170
|
+
2E6DBE0527723E0900EBD89E /* Embed Frameworks */,
|
|
171
|
+
);
|
|
172
|
+
buildRules = (
|
|
173
|
+
);
|
|
174
|
+
dependencies = (
|
|
175
|
+
);
|
|
176
|
+
name = CarthageTest;
|
|
177
|
+
productName = CarthageTest;
|
|
178
|
+
productReference = 2ED64E5B2770FAB2006AA0F3 /* CarthageTest.app */;
|
|
179
|
+
productType = "com.apple.product-type.application";
|
|
180
|
+
};
|
|
181
|
+
/* End PBXNativeTarget section */
|
|
182
|
+
|
|
183
|
+
/* Begin PBXProject section */
|
|
184
|
+
2ED64E532770FAB2006AA0F3 /* Project object */ = {
|
|
185
|
+
isa = PBXProject;
|
|
186
|
+
attributes = {
|
|
187
|
+
LastSwiftUpdateCheck = 1330;
|
|
188
|
+
LastUpgradeCheck = 1250;
|
|
189
|
+
TargetAttributes = {
|
|
190
|
+
08B627752878AE70004526F1 = {
|
|
191
|
+
CreatedOnToolsVersion = 13.3.1;
|
|
192
|
+
};
|
|
193
|
+
2ED64E5A2770FAB2006AA0F3 = {
|
|
194
|
+
CreatedOnToolsVersion = 12.5.1;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
buildConfigurationList = 2ED64E562770FAB2006AA0F3 /* Build configuration list for PBXProject "CarthageTest" */;
|
|
199
|
+
compatibilityVersion = "Xcode 9.3";
|
|
200
|
+
developmentRegion = en;
|
|
201
|
+
hasScannedForEncodings = 0;
|
|
202
|
+
knownRegions = (
|
|
203
|
+
en,
|
|
204
|
+
Base,
|
|
205
|
+
);
|
|
206
|
+
mainGroup = 2ED64E522770FAB2006AA0F3;
|
|
207
|
+
productRefGroup = 2ED64E5C2770FAB2006AA0F3 /* Products */;
|
|
208
|
+
projectDirPath = "";
|
|
209
|
+
projectRoot = "";
|
|
210
|
+
targets = (
|
|
211
|
+
2ED64E5A2770FAB2006AA0F3 /* CarthageTest */,
|
|
212
|
+
08B627752878AE70004526F1 /* CarthageTest-macOS */,
|
|
213
|
+
);
|
|
214
|
+
};
|
|
215
|
+
/* End PBXProject section */
|
|
216
|
+
|
|
217
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
218
|
+
08B627742878AE70004526F1 /* Resources */ = {
|
|
219
|
+
isa = PBXResourcesBuildPhase;
|
|
220
|
+
buildActionMask = 2147483647;
|
|
221
|
+
files = (
|
|
222
|
+
08B6277D2878AE72004526F1 /* Assets.xcassets in Resources */,
|
|
223
|
+
08B627802878AE72004526F1 /* Main.storyboard in Resources */,
|
|
224
|
+
);
|
|
225
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
226
|
+
};
|
|
227
|
+
2ED64E592770FAB2006AA0F3 /* Resources */ = {
|
|
228
|
+
isa = PBXResourcesBuildPhase;
|
|
229
|
+
buildActionMask = 2147483647;
|
|
230
|
+
files = (
|
|
231
|
+
2ED64E6B2770FAB3006AA0F3 /* LaunchScreen.storyboard in Resources */,
|
|
232
|
+
2ED64E682770FAB3006AA0F3 /* Assets.xcassets in Resources */,
|
|
233
|
+
2ED64E662770FAB2006AA0F3 /* Main.storyboard in Resources */,
|
|
234
|
+
);
|
|
235
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
236
|
+
};
|
|
237
|
+
/* End PBXResourcesBuildPhase section */
|
|
238
|
+
|
|
239
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
240
|
+
08B627722878AE70004526F1 /* Sources */ = {
|
|
241
|
+
isa = PBXSourcesBuildPhase;
|
|
242
|
+
buildActionMask = 2147483647;
|
|
243
|
+
files = (
|
|
244
|
+
08B6277B2878AE70004526F1 /* ViewController.swift in Sources */,
|
|
245
|
+
08B627792878AE70004526F1 /* AppDelegate.swift in Sources */,
|
|
246
|
+
);
|
|
247
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
248
|
+
};
|
|
249
|
+
2ED64E572770FAB2006AA0F3 /* Sources */ = {
|
|
250
|
+
isa = PBXSourcesBuildPhase;
|
|
251
|
+
buildActionMask = 2147483647;
|
|
252
|
+
files = (
|
|
253
|
+
2ED64E632770FAB2006AA0F3 /* ViewController.swift in Sources */,
|
|
254
|
+
2ED64E5F2770FAB2006AA0F3 /* AppDelegate.swift in Sources */,
|
|
255
|
+
2ED64E612770FAB2006AA0F3 /* SceneDelegate.swift in Sources */,
|
|
256
|
+
);
|
|
257
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
258
|
+
};
|
|
259
|
+
/* End PBXSourcesBuildPhase section */
|
|
260
|
+
|
|
261
|
+
/* Begin PBXVariantGroup section */
|
|
262
|
+
08B6277E2878AE72004526F1 /* Main.storyboard */ = {
|
|
263
|
+
isa = PBXVariantGroup;
|
|
264
|
+
children = (
|
|
265
|
+
08B6277F2878AE72004526F1 /* Base */,
|
|
266
|
+
);
|
|
267
|
+
name = Main.storyboard;
|
|
268
|
+
sourceTree = "<group>";
|
|
269
|
+
};
|
|
270
|
+
2ED64E642770FAB2006AA0F3 /* Main.storyboard */ = {
|
|
271
|
+
isa = PBXVariantGroup;
|
|
272
|
+
children = (
|
|
273
|
+
2ED64E652770FAB2006AA0F3 /* Base */,
|
|
274
|
+
);
|
|
275
|
+
name = Main.storyboard;
|
|
276
|
+
sourceTree = "<group>";
|
|
277
|
+
};
|
|
278
|
+
2ED64E692770FAB3006AA0F3 /* LaunchScreen.storyboard */ = {
|
|
279
|
+
isa = PBXVariantGroup;
|
|
280
|
+
children = (
|
|
281
|
+
2ED64E6A2770FAB3006AA0F3 /* Base */,
|
|
282
|
+
);
|
|
283
|
+
name = LaunchScreen.storyboard;
|
|
284
|
+
sourceTree = "<group>";
|
|
285
|
+
};
|
|
286
|
+
/* End PBXVariantGroup section */
|
|
287
|
+
|
|
288
|
+
/* Begin XCBuildConfiguration section */
|
|
289
|
+
08B627822878AE72004526F1 /* Debug */ = {
|
|
290
|
+
isa = XCBuildConfiguration;
|
|
291
|
+
buildSettings = {
|
|
292
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
293
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
294
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
|
|
295
|
+
CODE_SIGN_ENTITLEMENTS = "CarthageTest-macOS/CarthageTest_macOS.entitlements";
|
|
296
|
+
CODE_SIGN_STYLE = Automatic;
|
|
297
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
298
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
299
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
300
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
301
|
+
INFOPLIST_KEY_NSMainStoryboardFile = Main;
|
|
302
|
+
INFOPLIST_KEY_NSPrincipalClass = NSApplication;
|
|
303
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
304
|
+
"$(inherited)",
|
|
305
|
+
"@executable_path/../Frameworks",
|
|
306
|
+
);
|
|
307
|
+
MACOSX_DEPLOYMENT_TARGET = 12.3;
|
|
308
|
+
MARKETING_VERSION = 1.0;
|
|
309
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.airbnb.lottie.CarthageTest-macOS";
|
|
310
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
311
|
+
SDKROOT = macosx;
|
|
312
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
313
|
+
SWIFT_VERSION = 5.0;
|
|
314
|
+
};
|
|
315
|
+
name = Debug;
|
|
316
|
+
};
|
|
317
|
+
08B627832878AE72004526F1 /* Release */ = {
|
|
318
|
+
isa = XCBuildConfiguration;
|
|
319
|
+
buildSettings = {
|
|
320
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
321
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
322
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
|
|
323
|
+
CODE_SIGN_ENTITLEMENTS = "CarthageTest-macOS/CarthageTest_macOS.entitlements";
|
|
324
|
+
CODE_SIGN_STYLE = Automatic;
|
|
325
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
326
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
327
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
328
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
329
|
+
INFOPLIST_KEY_NSMainStoryboardFile = Main;
|
|
330
|
+
INFOPLIST_KEY_NSPrincipalClass = NSApplication;
|
|
331
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
332
|
+
"$(inherited)",
|
|
333
|
+
"@executable_path/../Frameworks",
|
|
334
|
+
);
|
|
335
|
+
MACOSX_DEPLOYMENT_TARGET = 12.3;
|
|
336
|
+
MARKETING_VERSION = 1.0;
|
|
337
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.airbnb.lottie.CarthageTest-macOS";
|
|
338
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
339
|
+
SDKROOT = macosx;
|
|
340
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
341
|
+
SWIFT_VERSION = 5.0;
|
|
342
|
+
};
|
|
343
|
+
name = Release;
|
|
344
|
+
};
|
|
345
|
+
2ED64E6D2770FAB3006AA0F3 /* Debug */ = {
|
|
346
|
+
isa = XCBuildConfiguration;
|
|
347
|
+
buildSettings = {
|
|
348
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
349
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
350
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
351
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
352
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
353
|
+
CLANG_ENABLE_MODULES = YES;
|
|
354
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
355
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
356
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
357
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
358
|
+
CLANG_WARN_COMMA = YES;
|
|
359
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
360
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
361
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
362
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
363
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
364
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
365
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
366
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
367
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
368
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
369
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
370
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
371
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
372
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
373
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
374
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
375
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
376
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
377
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
378
|
+
COPY_PHASE_STRIP = NO;
|
|
379
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
380
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
381
|
+
ENABLE_TESTABILITY = YES;
|
|
382
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
383
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
384
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
385
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
386
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
387
|
+
"DEBUG=1",
|
|
388
|
+
"$(inherited)",
|
|
389
|
+
);
|
|
390
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
391
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
392
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
393
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
394
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
395
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
396
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
|
|
397
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
398
|
+
MTL_FAST_MATH = YES;
|
|
399
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
400
|
+
SDKROOT = iphoneos;
|
|
401
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
402
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
403
|
+
};
|
|
404
|
+
name = Debug;
|
|
405
|
+
};
|
|
406
|
+
2ED64E6E2770FAB3006AA0F3 /* Release */ = {
|
|
407
|
+
isa = XCBuildConfiguration;
|
|
408
|
+
buildSettings = {
|
|
409
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
410
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
411
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
412
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
413
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
414
|
+
CLANG_ENABLE_MODULES = YES;
|
|
415
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
416
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
417
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
418
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
419
|
+
CLANG_WARN_COMMA = YES;
|
|
420
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
421
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
422
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
423
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
424
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
425
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
426
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
427
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
428
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
429
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
430
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
431
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
432
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
433
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
434
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
435
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
436
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
437
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
438
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
439
|
+
COPY_PHASE_STRIP = NO;
|
|
440
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
441
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
442
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
443
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
444
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
445
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
446
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
447
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
448
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
449
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
450
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
451
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
|
|
452
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
453
|
+
MTL_FAST_MATH = YES;
|
|
454
|
+
SDKROOT = iphoneos;
|
|
455
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
456
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
457
|
+
VALIDATE_PRODUCT = YES;
|
|
458
|
+
};
|
|
459
|
+
name = Release;
|
|
460
|
+
};
|
|
461
|
+
2ED64E702770FAB3006AA0F3 /* Debug */ = {
|
|
462
|
+
isa = XCBuildConfiguration;
|
|
463
|
+
buildSettings = {
|
|
464
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
465
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
466
|
+
CODE_SIGN_STYLE = Automatic;
|
|
467
|
+
DEVELOPMENT_TEAM = "";
|
|
468
|
+
INFOPLIST_FILE = CarthageTest/Info.plist;
|
|
469
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
470
|
+
"$(inherited)",
|
|
471
|
+
"@executable_path/Frameworks",
|
|
472
|
+
);
|
|
473
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.lottie.CarthageTest;
|
|
474
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
475
|
+
SWIFT_VERSION = 5.0;
|
|
476
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
477
|
+
};
|
|
478
|
+
name = Debug;
|
|
479
|
+
};
|
|
480
|
+
2ED64E712770FAB3006AA0F3 /* Release */ = {
|
|
481
|
+
isa = XCBuildConfiguration;
|
|
482
|
+
buildSettings = {
|
|
483
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
484
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
485
|
+
CODE_SIGN_STYLE = Automatic;
|
|
486
|
+
DEVELOPMENT_TEAM = "";
|
|
487
|
+
INFOPLIST_FILE = CarthageTest/Info.plist;
|
|
488
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
489
|
+
"$(inherited)",
|
|
490
|
+
"@executable_path/Frameworks",
|
|
491
|
+
);
|
|
492
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.lottie.CarthageTest;
|
|
493
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
494
|
+
SWIFT_VERSION = 5.0;
|
|
495
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
496
|
+
};
|
|
497
|
+
name = Release;
|
|
498
|
+
};
|
|
499
|
+
/* End XCBuildConfiguration section */
|
|
500
|
+
|
|
501
|
+
/* Begin XCConfigurationList section */
|
|
502
|
+
08B627842878AE72004526F1 /* Build configuration list for PBXNativeTarget "CarthageTest-macOS" */ = {
|
|
503
|
+
isa = XCConfigurationList;
|
|
504
|
+
buildConfigurations = (
|
|
505
|
+
08B627822878AE72004526F1 /* Debug */,
|
|
506
|
+
08B627832878AE72004526F1 /* Release */,
|
|
507
|
+
);
|
|
508
|
+
defaultConfigurationIsVisible = 0;
|
|
509
|
+
defaultConfigurationName = Release;
|
|
510
|
+
};
|
|
511
|
+
2ED64E562770FAB2006AA0F3 /* Build configuration list for PBXProject "CarthageTest" */ = {
|
|
512
|
+
isa = XCConfigurationList;
|
|
513
|
+
buildConfigurations = (
|
|
514
|
+
2ED64E6D2770FAB3006AA0F3 /* Debug */,
|
|
515
|
+
2ED64E6E2770FAB3006AA0F3 /* Release */,
|
|
516
|
+
);
|
|
517
|
+
defaultConfigurationIsVisible = 0;
|
|
518
|
+
defaultConfigurationName = Release;
|
|
519
|
+
};
|
|
520
|
+
2ED64E6F2770FAB3006AA0F3 /* Build configuration list for PBXNativeTarget "CarthageTest" */ = {
|
|
521
|
+
isa = XCConfigurationList;
|
|
522
|
+
buildConfigurations = (
|
|
523
|
+
2ED64E702770FAB3006AA0F3 /* Debug */,
|
|
524
|
+
2ED64E712770FAB3006AA0F3 /* Release */,
|
|
525
|
+
);
|
|
526
|
+
defaultConfigurationIsVisible = 0;
|
|
527
|
+
defaultConfigurationName = Release;
|
|
528
|
+
};
|
|
529
|
+
/* End XCConfigurationList section */
|
|
530
|
+
};
|
|
531
|
+
rootObject = 2ED64E532770FAB2006AA0F3 /* Project object */;
|
|
532
|
+
}
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>CarthageTest.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>CarthageTest-macOS.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>1</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
<key>CarthageTest.xcscheme_^#shared#^_</key>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>orderHint</key>
|
|
15
|
+
<integer>0</integer>
|
|
16
|
+
</dict>
|
|
17
|
+
</dict>
|
|
18
|
+
</dict>
|
|
19
|
+
</plist>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
thii/xcbeautify@0.10.2
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
thii/xcbeautify@0.10.2
|
|
Binary file
|
package/Lottie/Info.plist
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
-
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
7
|
-
<key>CFBundleExecutable</key>
|
|
8
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
9
|
-
<key>CFBundleIdentifier</key>
|
|
10
|
-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
11
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
-
<string>6.0</string>
|
|
13
|
-
<key>CFBundleName</key>
|
|
14
|
-
<string>$(PRODUCT_NAME)</string>
|
|
15
|
-
<key>CFBundlePackageType</key>
|
|
16
|
-
<string>FMWK</string>
|
|
17
|
-
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>1.0</string>
|
|
19
|
-
<key>CFBundleVersion</key>
|
|
20
|
-
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
21
|
-
</dict>
|
|
22
|
-
</plist>
|