lottie-ios 4.3.3 → 4.4.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.
Files changed (199) hide show
  1. package/.github/workflows/main.yml +51 -58
  2. package/Lottie.xcodeproj/project.pbxproj +40 -0
  3. package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +4 -17
  4. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +37 -40
  5. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  6. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +9 -666
  7. package/Package.resolved +20 -22
  8. package/Package.swift +4 -2
  9. package/README.md +21 -3
  10. package/Rakefile +52 -28
  11. package/Sources/PrivacyInfo.xcprivacy +23 -0
  12. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +1 -1
  13. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +23 -13
  14. package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +8 -2
  15. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +7 -1
  16. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +15 -2
  17. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +8 -1
  18. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +8 -1
  19. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +12 -1
  20. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +0 -1
  21. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +19 -11
  22. package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +45 -19
  23. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +38 -3
  24. package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +1 -1
  25. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +9 -2
  26. package/Sources/Private/CoreAnimation/Extensions/Keyframes+timeRemapping.swift +46 -0
  27. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +77 -13
  28. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +1 -1
  29. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +2 -2
  30. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +1 -1
  31. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -7
  32. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +19 -53
  33. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +2 -2
  34. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +97 -31
  35. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +5 -2
  36. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift +1 -1
  37. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift +10 -10
  38. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingController.swift +1 -1
  39. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingView.swift +1 -3
  40. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift +2 -0
  41. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift +2 -0
  42. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift +2 -0
  43. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift +2 -0
  44. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift +2 -0
  45. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift +2 -0
  46. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift +2 -0
  47. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift +2 -0
  48. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift +2 -1
  49. package/Sources/Private/EmbeddedLibraries/LRUCache/LRUCache.swift +256 -0
  50. package/Sources/Private/EmbeddedLibraries/LRUCache/README.md +24 -0
  51. package/Sources/Private/EmbeddedLibraries/README.md +16 -0
  52. package/Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift +2 -2
  53. package/Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift +7 -7
  54. package/Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift +2 -2
  55. package/Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift +5 -5
  56. package/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift +1 -2
  57. package/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift +1 -3
  58. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +1 -2
  59. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -3
  60. package/Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift +2 -3
  61. package/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift +5 -12
  62. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +0 -1
  63. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +11 -7
  64. package/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift +3 -3
  65. package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +12 -12
  66. package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -3
  67. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +0 -2
  68. package/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift +1 -3
  69. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +0 -2
  70. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +0 -2
  71. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +1 -3
  72. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +0 -1
  73. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +0 -1
  74. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +1 -3
  75. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +1 -2
  76. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +0 -1
  77. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +0 -2
  78. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +0 -1
  79. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +0 -1
  80. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +0 -1
  81. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +2 -3
  82. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +1 -3
  83. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +2 -2
  84. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +0 -2
  85. package/Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift +0 -1
  86. package/Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift +0 -2
  87. package/Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift +0 -2
  88. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +0 -1
  89. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +0 -1
  90. package/Sources/Private/Model/Assets/Asset.swift +2 -3
  91. package/Sources/Private/Model/Assets/AssetLibrary.swift +11 -11
  92. package/Sources/Private/Model/Assets/ImageAsset.swift +20 -0
  93. package/Sources/Private/Model/Assets/PrecompAsset.swift +0 -2
  94. package/Sources/Private/Model/DictionaryInitializable.swift +18 -10
  95. package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +9 -6
  96. package/Sources/Private/Model/DotLottie/DotLottieUtils.swift +1 -1
  97. package/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +5 -4
  98. package/Sources/Private/Model/Keyframes/KeyframeData.swift +1 -4
  99. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +1 -3
  100. package/Sources/Private/Model/LayerEffects/DropShadowEffect.swift +0 -2
  101. package/Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift +0 -2
  102. package/Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift +4 -5
  103. package/Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift +0 -2
  104. package/Sources/Private/Model/LayerEffects/LayerEffect.swift +2 -3
  105. package/Sources/Private/Model/LayerStyles/DropShadowStyle.swift +0 -2
  106. package/Sources/Private/Model/LayerStyles/LayerStyle.swift +2 -3
  107. package/Sources/Private/Model/Layers/ImageLayerModel.swift +0 -2
  108. package/Sources/Private/Model/Layers/LayerModel.swift +16 -5
  109. package/Sources/Private/Model/Layers/PreCompLayerModel.swift +0 -2
  110. package/Sources/Private/Model/Layers/ShapeLayerModel.swift +0 -2
  111. package/Sources/Private/Model/Layers/SolidLayerModel.swift +0 -2
  112. package/Sources/Private/Model/Layers/TextLayerModel.swift +0 -2
  113. package/Sources/Private/Model/Objects/DashPattern.swift +1 -3
  114. package/Sources/Private/Model/Objects/Marker.swift +0 -2
  115. package/Sources/Private/Model/Objects/Mask.swift +0 -2
  116. package/Sources/Private/Model/Objects/Transform.swift +46 -9
  117. package/Sources/Private/Model/ShapeItems/Ellipse.swift +0 -2
  118. package/Sources/Private/Model/ShapeItems/Fill.swift +0 -2
  119. package/Sources/Private/Model/ShapeItems/GradientFill.swift +1 -3
  120. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +1 -3
  121. package/Sources/Private/Model/ShapeItems/Group.swift +0 -2
  122. package/Sources/Private/Model/ShapeItems/Merge.swift +1 -3
  123. package/Sources/Private/Model/ShapeItems/Rectangle.swift +0 -2
  124. package/Sources/Private/Model/ShapeItems/Repeater.swift +0 -2
  125. package/Sources/Private/Model/ShapeItems/RoundedCorners.swift +0 -2
  126. package/Sources/Private/Model/ShapeItems/Shape.swift +0 -2
  127. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +2 -3
  128. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -2
  129. package/Sources/Private/Model/ShapeItems/Star.swift +1 -3
  130. package/Sources/Private/Model/ShapeItems/Stroke.swift +0 -2
  131. package/Sources/Private/Model/ShapeItems/Trim.swift +1 -3
  132. package/Sources/Private/Model/Text/Font.swift +0 -2
  133. package/Sources/Private/Model/Text/Glyph.swift +0 -2
  134. package/Sources/Private/Model/Text/TextAnimator.swift +0 -2
  135. package/Sources/Private/Model/Text/TextDocument.swift +2 -4
  136. package/Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift +0 -2
  137. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +4 -5
  138. package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +2 -3
  139. package/Sources/Private/Utility/Extensions/DataExtension.swift +0 -1
  140. package/Sources/Private/Utility/Extensions/StringExtensions.swift +5 -0
  141. package/Sources/Private/Utility/Helpers/AnimationContext.swift +2 -3
  142. package/Sources/Private/Utility/Helpers/AnyEquatable.swift +0 -2
  143. package/Sources/Private/Utility/Helpers/Binding+Map.swift +2 -0
  144. package/Sources/Private/Utility/Helpers/View+ValueChanged.swift +2 -0
  145. package/Sources/Private/Utility/LottieAnimationSource.swift +11 -1
  146. package/Sources/Private/Utility/Primitives/BezierPath.swift +2 -3
  147. package/Sources/Private/Utility/Primitives/CGPointExtension.swift +1 -1
  148. package/Sources/Private/Utility/Primitives/ColorExtension.swift +1 -2
  149. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +6 -6
  150. package/Sources/Public/Animation/LottieAnimation.swift +2 -2
  151. package/Sources/Public/Animation/LottieAnimationHelpers.swift +7 -5
  152. package/Sources/Public/Animation/LottieAnimationLayer.swift +30 -43
  153. package/Sources/Public/Animation/LottieAnimationView.swift +18 -8
  154. package/Sources/Public/Animation/LottieAnimationViewInitializers.swift +3 -3
  155. package/Sources/Public/Animation/LottiePlaybackMode.swift +53 -0
  156. package/Sources/Public/Animation/LottieView.swift +145 -48
  157. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +0 -2
  158. package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +21 -7
  159. package/Sources/Public/AnimationCache/LRUAnimationCache.swift +0 -2
  160. package/Sources/Public/Controls/AnimatedButton.swift +4 -6
  161. package/Sources/Public/Controls/AnimatedControl.swift +1 -3
  162. package/Sources/Public/Controls/AnimatedSwitch.swift +1 -3
  163. package/Sources/Public/Controls/LottieButton.swift +2 -1
  164. package/Sources/Public/Controls/LottieSwitch.swift +2 -0
  165. package/Sources/Public/DotLottie/Cache/DotLottieCache.swift +17 -4
  166. package/Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift +1 -3
  167. package/Sources/Public/DotLottie/DotLottieConfiguration.swift +53 -5
  168. package/Sources/Public/DotLottie/DotLottieFile.swift +4 -3
  169. package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +18 -11
  170. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +0 -2
  171. package/Sources/Public/DynamicProperties/AnyValueProvider.swift +0 -1
  172. package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +2 -2
  173. package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +1 -1
  174. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +1 -1
  175. package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +1 -1
  176. package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +1 -1
  177. package/Sources/Public/FontProvider/AnimationFontProvider.swift +0 -2
  178. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +0 -2
  179. package/Sources/Public/Keyframes/Interpolatable.swift +26 -0
  180. package/Sources/Public/Primitives/LottieColor.swift +0 -2
  181. package/Sources/Public/Primitives/Vectors.swift +0 -2
  182. package/Sources/Public/TextProvider/AnimationTextProvider.swift +0 -2
  183. package/Sources/Public/iOS/AnimationSubview.swift +0 -1
  184. package/Sources/Public/iOS/BundleImageProvider.swift +3 -8
  185. package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +4 -8
  186. package/Sources/Public/iOS/LottieAnimationViewBase.swift +5 -2
  187. package/Sources/Public/iOS/UIColorExtension.swift +1 -2
  188. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +3 -6
  189. package/lottie-ios.podspec +6 -2
  190. package/package.json +1 -1
  191. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  192. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  193. package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
  194. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  195. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -6
  196. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +0 -153
  197. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/IDEFindNavigatorScopes.plist +0 -5
  198. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +0 -231
  199. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
@@ -7,690 +7,33 @@
7
7
  <BreakpointProxy
8
8
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
9
9
  <BreakpointContent
10
- uuid = "9DC6749B-AFBA-42EA-B760-D50A245DEC24"
10
+ uuid = "8091EB50-102C-46B2-9DCE-9CC40A3FE4E9"
11
11
  shouldBeEnabled = "No"
12
12
  ignoreCount = "0"
13
13
  continueAfterRunningActions = "No"
14
- filePath = "Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift"
14
+ filePath = "Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift"
15
15
  startingColumnNumber = "9223372036854775807"
16
16
  endingColumnNumber = "9223372036854775807"
17
- startingLineNumber = "137"
18
- endingLineNumber = "137"
17
+ startingLineNumber = "112"
18
+ endingLineNumber = "112"
19
19
  landmarkName = "rebuildOutputs(frame:)"
20
20
  landmarkType = "7">
21
- <Locations>
22
- <Location
23
- uuid = "9DC6749B-AFBA-42EA-B760-D50A245DEC24 - f0c945e8360ca5fb"
24
- shouldBeEnabled = "Yes"
25
- ignoreCount = "0"
26
- continueAfterRunningActions = "No"
27
- symbolName = "Lottie.LayerTransformNode.rebuildOutputs(frame: CoreGraphics.CGFloat) -&gt; ()"
28
- moduleName = "Lottie"
29
- usesParentBreakpointCondition = "Yes"
30
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift"
31
- startingColumnNumber = "9223372036854775807"
32
- endingColumnNumber = "9223372036854775807"
33
- startingLineNumber = "137"
34
- endingLineNumber = "137"
35
- offsetFromSymbolStart = "2042">
36
- </Location>
37
- <Location
38
- uuid = "9DC6749B-AFBA-42EA-B760-D50A245DEC24 - f0c945e8360ca5fb"
39
- shouldBeEnabled = "Yes"
40
- ignoreCount = "0"
41
- continueAfterRunningActions = "No"
42
- symbolName = "Lottie.LayerTransformNode.rebuildOutputs(frame: CoreGraphics.CGFloat) -&gt; ()"
43
- moduleName = "Lottie"
44
- usesParentBreakpointCondition = "Yes"
45
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift"
46
- startingColumnNumber = "9223372036854775807"
47
- endingColumnNumber = "9223372036854775807"
48
- startingLineNumber = "137"
49
- endingLineNumber = "137"
50
- offsetFromSymbolStart = "2258">
51
- </Location>
52
- </Locations>
53
21
  </BreakpointContent>
54
22
  </BreakpointProxy>
55
23
  <BreakpointProxy
56
24
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
57
25
  <BreakpointContent
58
- uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58"
26
+ uuid = "CC3C8E8A-14BE-4C8D-8423-0224C306B322"
59
27
  shouldBeEnabled = "No"
60
- condition = "customizableProperty.name.map { $0.rawValue } == [&quot;Position&quot;]"
61
- ignoreCount = "0"
62
- continueAfterRunningActions = "No"
63
- filePath = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
64
- startingColumnNumber = "9223372036854775807"
65
- endingColumnNumber = "9223372036854775807"
66
- startingLineNumber = "104"
67
- endingLineNumber = "104"
68
- landmarkName = "CALayer"
69
- landmarkType = "21">
70
- <Locations>
71
- <Location
72
- uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
73
- shouldBeEnabled = "Yes"
74
- ignoreCount = "0"
75
- continueAfterRunningActions = "No"
76
- symbolName = "__C.CALayer.customizedAnimation&lt;&#x3c4;_0_0&gt;(for: Lottie.LayerProperty&lt;&#x3c4;_0_0&gt;, context: Lottie.LayerAnimationContext) throws -&gt; Swift.Optional&lt;__C.CAPropertyAnimation&gt;"
77
- moduleName = "Lottie"
78
- usesParentBreakpointCondition = "Yes"
79
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
80
- startingColumnNumber = "9223372036854775807"
81
- endingColumnNumber = "9223372036854775807"
82
- startingLineNumber = "106"
83
- endingLineNumber = "106"
84
- offsetFromSymbolStart = "156">
85
- </Location>
86
- <Location
87
- uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
88
- shouldBeEnabled = "Yes"
89
- ignoreCount = "0"
90
- continueAfterRunningActions = "No"
91
- symbolName = "__C.CALayer.customizedAnimation&lt;&#x3c4;_0_0&gt;(for: Lottie.LayerProperty&lt;&#x3c4;_0_0&gt;, context: Lottie.LayerAnimationContext) throws -&gt; Swift.Optional&lt;__C.CAPropertyAnimation&gt;"
92
- moduleName = "Lottie"
93
- usesParentBreakpointCondition = "Yes"
94
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
95
- startingColumnNumber = "9223372036854775807"
96
- endingColumnNumber = "9223372036854775807"
97
- startingLineNumber = "106"
98
- endingLineNumber = "106"
99
- offsetFromSymbolStart = "220">
100
- </Location>
101
- </Locations>
102
- </BreakpointContent>
103
- </BreakpointProxy>
104
- <BreakpointProxy
105
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
106
- <BreakpointContent
107
- uuid = "F52F692F-1F08-4469-8EE8-C10D7FC89847"
108
- shouldBeEnabled = "No"
109
- condition = "context.currentKeypath.fullPath.contains(&quot;Group 1&quot;)"
110
28
  ignoreCount = "0"
111
29
  continueAfterRunningActions = "No"
112
30
  filePath = "Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift"
113
31
  startingColumnNumber = "9223372036854775807"
114
32
  endingColumnNumber = "9223372036854775807"
115
- startingLineNumber = "342"
116
- endingLineNumber = "342"
117
- landmarkName = "`for`(_:)"
118
- landmarkType = "7">
119
- </BreakpointContent>
120
- </BreakpointProxy>
121
- <BreakpointProxy
122
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
123
- <BreakpointContent
124
- uuid = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
125
- shouldBeEnabled = "No"
126
- ignoreCount = "0"
127
- continueAfterRunningActions = "No"
128
- filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
129
- startingColumnNumber = "9223372036854775807"
130
- endingColumnNumber = "9223372036854775807"
131
- startingLineNumber = "116"
132
- endingLineNumber = "116"
133
- landmarkName = "Trim"
134
- landmarkType = "21">
135
- </BreakpointContent>
136
- </BreakpointProxy>
137
- <BreakpointProxy
138
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
139
- <BreakpointContent
140
- uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6"
141
- shouldBeEnabled = "No"
142
- ignoreCount = "0"
143
- continueAfterRunningActions = "No"
144
- filePath = "Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
145
- startingColumnNumber = "9223372036854775807"
146
- endingColumnNumber = "9223372036854775807"
147
- startingLineNumber = "54"
148
- endingLineNumber = "54"
149
- landmarkName = "setup(context:)"
150
- landmarkType = "7">
151
- <Locations>
152
- <Location
153
- uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415bc3f"
154
- shouldBeEnabled = "Yes"
155
- ignoreCount = "0"
156
- continueAfterRunningActions = "No"
157
- symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -&gt; ()"
158
- moduleName = "Lottie"
159
- usesParentBreakpointCondition = "Yes"
160
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
161
- startingColumnNumber = "9223372036854775807"
162
- endingColumnNumber = "9223372036854775807"
163
- startingLineNumber = "54"
164
- endingLineNumber = "54"
165
- offsetFromSymbolStart = "320">
166
- </Location>
167
- <Location
168
- uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415a337"
169
- shouldBeEnabled = "Yes"
170
- ignoreCount = "0"
171
- continueAfterRunningActions = "No"
172
- symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -&gt; ()"
173
- moduleName = "Lottie"
174
- usesParentBreakpointCondition = "Yes"
175
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
176
- startingColumnNumber = "9223372036854775807"
177
- endingColumnNumber = "9223372036854775807"
178
- startingLineNumber = "62"
179
- endingLineNumber = "62"
180
- offsetFromSymbolStart = "84">
181
- </Location>
182
- <Location
183
- uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415a337"
184
- shouldBeEnabled = "Yes"
185
- ignoreCount = "0"
186
- continueAfterRunningActions = "No"
187
- symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -&gt; ()"
188
- moduleName = "Lottie"
189
- usesParentBreakpointCondition = "Yes"
190
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
191
- startingColumnNumber = "9223372036854775807"
192
- endingColumnNumber = "9223372036854775807"
193
- startingLineNumber = "62"
194
- endingLineNumber = "62"
195
- offsetFromSymbolStart = "172">
196
- </Location>
197
- </Locations>
198
- </BreakpointContent>
199
- </BreakpointProxy>
200
- <BreakpointProxy
201
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
202
- <BreakpointContent
203
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B"
204
- shouldBeEnabled = "Yes"
205
- ignoreCount = "0"
206
- continueAfterRunningActions = "No"
207
- filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
208
- startingColumnNumber = "9223372036854775807"
209
- endingColumnNumber = "9223372036854775807"
210
- startingLineNumber = "411"
211
- endingLineNumber = "411"
212
- landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
213
- landmarkType = "7">
214
- <Locations>
215
- <Location
216
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
217
- shouldBeEnabled = "Yes"
218
- ignoreCount = "0"
219
- continueAfterRunningActions = "No"
220
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
221
- moduleName = "Lottie"
222
- usesParentBreakpointCondition = "Yes"
223
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
224
- startingColumnNumber = "9223372036854775807"
225
- endingColumnNumber = "9223372036854775807"
226
- startingLineNumber = "412"
227
- endingLineNumber = "412"
228
- offsetFromSymbolStart = "116">
229
- </Location>
230
- <Location
231
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
232
- shouldBeEnabled = "Yes"
233
- ignoreCount = "0"
234
- continueAfterRunningActions = "No"
235
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
236
- moduleName = "Example (Multiplatform)"
237
- usesParentBreakpointCondition = "Yes"
238
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
239
- startingColumnNumber = "9223372036854775807"
240
- endingColumnNumber = "9223372036854775807"
241
- startingLineNumber = "412"
242
- endingLineNumber = "412"
243
- offsetFromSymbolStart = "116">
244
- </Location>
245
- <Location
246
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
247
- shouldBeEnabled = "Yes"
248
- ignoreCount = "0"
249
- continueAfterRunningActions = "No"
250
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
251
- moduleName = "Example (Multiplatform)"
252
- usesParentBreakpointCondition = "Yes"
253
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
254
- startingColumnNumber = "9223372036854775807"
255
- endingColumnNumber = "9223372036854775807"
256
- startingLineNumber = "412"
257
- endingLineNumber = "412"
258
- offsetFromSymbolStart = "100">
259
- </Location>
260
- <Location
261
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
262
- shouldBeEnabled = "Yes"
263
- ignoreCount = "0"
264
- continueAfterRunningActions = "No"
265
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
266
- moduleName = "Example (Multiplatform)"
267
- usesParentBreakpointCondition = "Yes"
268
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
269
- startingColumnNumber = "9223372036854775807"
270
- endingColumnNumber = "9223372036854775807"
271
- startingLineNumber = "412"
272
- endingLineNumber = "412"
273
- offsetFromSymbolStart = "127">
274
- </Location>
275
- <Location
276
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
277
- shouldBeEnabled = "Yes"
278
- ignoreCount = "0"
279
- continueAfterRunningActions = "No"
280
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
281
- moduleName = "Lottie"
282
- usesParentBreakpointCondition = "Yes"
283
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
284
- startingColumnNumber = "9223372036854775807"
285
- endingColumnNumber = "9223372036854775807"
286
- startingLineNumber = "412"
287
- endingLineNumber = "412"
288
- offsetFromSymbolStart = "127">
289
- </Location>
290
- <Location
291
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
292
- shouldBeEnabled = "Yes"
293
- ignoreCount = "0"
294
- continueAfterRunningActions = "No"
295
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
296
- moduleName = "Lottie"
297
- usesParentBreakpointCondition = "Yes"
298
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
299
- startingColumnNumber = "9223372036854775807"
300
- endingColumnNumber = "9223372036854775807"
301
- startingLineNumber = "412"
302
- endingLineNumber = "412"
303
- offsetFromSymbolStart = "99">
304
- </Location>
305
- <Location
306
- uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - a6d45bb5484d1294"
307
- shouldBeEnabled = "Yes"
308
- ignoreCount = "0"
309
- continueAfterRunningActions = "No"
310
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
311
- moduleName = "lottieBugReproduction"
312
- usesParentBreakpointCondition = "Yes"
313
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
314
- startingColumnNumber = "9223372036854775807"
315
- endingColumnNumber = "9223372036854775807"
316
- startingLineNumber = "412"
317
- endingLineNumber = "412"
318
- offsetFromSymbolStart = "99">
319
- </Location>
320
- </Locations>
321
- </BreakpointContent>
322
- </BreakpointProxy>
323
- <BreakpointProxy
324
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
325
- <BreakpointContent
326
- uuid = "1B4030EA-5C63-4382-BA53-C41BB0EA078E"
327
- shouldBeEnabled = "Yes"
328
- ignoreCount = "0"
329
- continueAfterRunningActions = "No"
330
- filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
331
- startingColumnNumber = "9223372036854775807"
332
- endingColumnNumber = "9223372036854775807"
333
- startingLineNumber = "413"
334
- endingLineNumber = "413"
335
- landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
336
- landmarkType = "7">
337
- </BreakpointContent>
338
- </BreakpointProxy>
339
- <BreakpointProxy
340
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
341
- <BreakpointContent
342
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122"
343
- shouldBeEnabled = "Yes"
344
- ignoreCount = "0"
345
- continueAfterRunningActions = "No"
346
- filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
347
- startingColumnNumber = "9223372036854775807"
348
- endingColumnNumber = "9223372036854775807"
349
- startingLineNumber = "393"
350
- endingLineNumber = "393"
351
- landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
352
- landmarkType = "7">
353
- <Locations>
354
- <Location
355
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
356
- shouldBeEnabled = "Yes"
357
- ignoreCount = "0"
358
- continueAfterRunningActions = "No"
359
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
360
- moduleName = "Lottie"
361
- usesParentBreakpointCondition = "Yes"
362
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
363
- startingColumnNumber = "9223372036854775807"
364
- endingColumnNumber = "9223372036854775807"
365
- startingLineNumber = "393"
366
- endingLineNumber = "393"
367
- offsetFromSymbolStart = "124">
368
- </Location>
369
- <Location
370
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
371
- shouldBeEnabled = "Yes"
372
- ignoreCount = "0"
373
- continueAfterRunningActions = "No"
374
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
375
- moduleName = "Example (Multiplatform)"
376
- usesParentBreakpointCondition = "Yes"
377
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
378
- startingColumnNumber = "9223372036854775807"
379
- endingColumnNumber = "9223372036854775807"
380
- startingLineNumber = "393"
381
- endingLineNumber = "393"
382
- offsetFromSymbolStart = "124">
383
- </Location>
384
- <Location
385
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
386
- shouldBeEnabled = "Yes"
387
- ignoreCount = "0"
388
- continueAfterRunningActions = "No"
389
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
390
- moduleName = "Example (Multiplatform)"
391
- usesParentBreakpointCondition = "Yes"
392
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
393
- startingColumnNumber = "9223372036854775807"
394
- endingColumnNumber = "9223372036854775807"
395
- startingLineNumber = "393"
396
- endingLineNumber = "393"
397
- offsetFromSymbolStart = "108">
398
- </Location>
399
- <Location
400
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
401
- shouldBeEnabled = "Yes"
402
- ignoreCount = "0"
403
- continueAfterRunningActions = "No"
404
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
405
- moduleName = "Example (Multiplatform)"
406
- usesParentBreakpointCondition = "Yes"
407
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
408
- startingColumnNumber = "9223372036854775807"
409
- endingColumnNumber = "9223372036854775807"
410
- startingLineNumber = "393"
411
- endingLineNumber = "393"
412
- offsetFromSymbolStart = "128">
413
- </Location>
414
- <Location
415
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
416
- shouldBeEnabled = "Yes"
417
- ignoreCount = "0"
418
- continueAfterRunningActions = "No"
419
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
420
- moduleName = "Lottie"
421
- usesParentBreakpointCondition = "Yes"
422
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
423
- startingColumnNumber = "9223372036854775807"
424
- endingColumnNumber = "9223372036854775807"
425
- startingLineNumber = "393"
426
- endingLineNumber = "393"
427
- offsetFromSymbolStart = "128">
428
- </Location>
429
- <Location
430
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
431
- shouldBeEnabled = "Yes"
432
- ignoreCount = "0"
433
- continueAfterRunningActions = "No"
434
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
435
- moduleName = "Lottie"
436
- usesParentBreakpointCondition = "Yes"
437
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
438
- startingColumnNumber = "9223372036854775807"
439
- endingColumnNumber = "9223372036854775807"
440
- startingLineNumber = "393"
441
- endingLineNumber = "393"
442
- offsetFromSymbolStart = "97">
443
- </Location>
444
- <Location
445
- uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 205d4f501848c002"
446
- shouldBeEnabled = "Yes"
447
- ignoreCount = "0"
448
- continueAfterRunningActions = "No"
449
- symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
450
- moduleName = "lottieBugReproduction"
451
- usesParentBreakpointCondition = "Yes"
452
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
453
- startingColumnNumber = "9223372036854775807"
454
- endingColumnNumber = "9223372036854775807"
455
- startingLineNumber = "393"
456
- endingLineNumber = "393"
457
- offsetFromSymbolStart = "97">
458
- </Location>
459
- </Locations>
460
- </BreakpointContent>
461
- </BreakpointProxy>
462
- <BreakpointProxy
463
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
464
- <BreakpointContent
465
- uuid = "58C50FA3-5DB1-4BDC-963D-554C96793B8E"
466
- shouldBeEnabled = "Yes"
467
- ignoreCount = "0"
468
- continueAfterRunningActions = "No"
469
- filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
470
- startingColumnNumber = "9223372036854775807"
471
- endingColumnNumber = "9223372036854775807"
472
- startingLineNumber = "415"
473
- endingLineNumber = "415"
474
- landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
475
- landmarkType = "7">
476
- </BreakpointContent>
477
- </BreakpointProxy>
478
- <BreakpointProxy
479
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
480
- <BreakpointContent
481
- uuid = "46F5CCC2-A2B4-43BB-9372-588E157C15F8"
482
- shouldBeEnabled = "Yes"
483
- ignoreCount = "0"
484
- continueAfterRunningActions = "No"
485
- filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
486
- startingColumnNumber = "9223372036854775807"
487
- endingColumnNumber = "9223372036854775807"
488
- startingLineNumber = "395"
489
- endingLineNumber = "395"
490
- landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
491
- landmarkType = "7">
492
- </BreakpointContent>
493
- </BreakpointProxy>
494
- <BreakpointProxy
495
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
496
- <BreakpointContent
497
- uuid = "8FB76DCA-529E-41F7-9C40-3BA6FA8DF134"
498
- shouldBeEnabled = "No"
499
- ignoreCount = "0"
500
- continueAfterRunningActions = "No"
501
- filePath = "Sources/Public/iOS/AnimatedSwitch.swift"
502
- startingColumnNumber = "9223372036854775807"
503
- endingColumnNumber = "9223372036854775807"
504
- startingLineNumber = "220"
505
- endingLineNumber = "220"
506
- landmarkName = "unknown"
507
- landmarkType = "0">
508
- </BreakpointContent>
509
- </BreakpointProxy>
510
- <BreakpointProxy
511
- BreakpointExtensionID = "Xcode.Breakpoint.SymbolicBreakpoint">
512
- <BreakpointContent
513
- uuid = "F7CB69A9-F174-4CF0-8C0C-F43E48DE48B2"
514
- shouldBeEnabled = "Yes"
515
- ignoreCount = "0"
516
- continueAfterRunningActions = "No"
517
- symbolName = ""
518
- moduleName = "">
519
- <Locations>
520
- </Locations>
521
- </BreakpointContent>
522
- </BreakpointProxy>
523
- <BreakpointProxy
524
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
525
- <BreakpointContent
526
- uuid = "3C169A2A-85F7-4FD3-ACB3-C255C87766C1"
527
- shouldBeEnabled = "No"
528
- ignoreCount = "0"
529
- continueAfterRunningActions = "No"
530
- filePath = "Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift"
531
- startingColumnNumber = "9223372036854775807"
532
- endingColumnNumber = "9223372036854775807"
533
- startingLineNumber = "55"
534
- endingLineNumber = "55">
535
- </BreakpointContent>
536
- </BreakpointProxy>
537
- <BreakpointProxy
538
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
539
- <BreakpointContent
540
- uuid = "BD2B1B69-E42C-4C98-860F-8C129397EEE7"
541
- shouldBeEnabled = "No"
542
- ignoreCount = "0"
543
- continueAfterRunningActions = "No"
544
- filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
545
- startingColumnNumber = "9223372036854775807"
546
- endingColumnNumber = "9223372036854775807"
547
- startingLineNumber = "160"
548
- endingLineNumber = "160"
549
- landmarkName = "layerKeypaths(for:)"
550
- landmarkType = "7">
551
- </BreakpointContent>
552
- </BreakpointProxy>
553
- <BreakpointProxy
554
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
555
- <BreakpointContent
556
- uuid = "7F8F379C-35B0-4F4B-B25F-4A6D5910F1DA"
557
- shouldBeEnabled = "No"
558
- ignoreCount = "0"
559
- continueAfterRunningActions = "No"
560
- filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
561
- startingColumnNumber = "9223372036854775807"
562
- endingColumnNumber = "9223372036854775807"
563
- startingLineNumber = "165"
564
- endingLineNumber = "165"
565
- landmarkName = "layerKeypaths(for:)"
566
- landmarkType = "7">
567
- </BreakpointContent>
568
- </BreakpointProxy>
569
- <BreakpointProxy
570
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
571
- <BreakpointContent
572
- uuid = "93EDC5AB-8948-4148-83CC-FDDCB8BE5AFE"
573
- shouldBeEnabled = "No"
574
- ignoreCount = "0"
575
- continueAfterRunningActions = "No"
576
- filePath = "Example/Example/AnimationPreviewView.swift"
577
- startingColumnNumber = "9223372036854775807"
578
- endingColumnNumber = "9223372036854775807"
579
- startingLineNumber = "119"
580
- endingLineNumber = "119"
581
- landmarkName = "AnimationPreviewView"
582
- landmarkType = "14">
583
- </BreakpointContent>
584
- </BreakpointProxy>
585
- <BreakpointProxy
586
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
587
- <BreakpointContent
588
- uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70"
589
- shouldBeEnabled = "Yes"
590
- ignoreCount = "0"
591
- continueAfterRunningActions = "No"
592
- filePath = "Sources/Public/iOS/FilepathImageProvider.swift"
593
- startingColumnNumber = "9223372036854775807"
594
- endingColumnNumber = "9223372036854775807"
595
- startingLineNumber = "40"
596
- endingLineNumber = "40"
597
- landmarkName = "imageForAsset(asset:)"
598
- landmarkType = "7">
599
- <Locations>
600
- <Location
601
- uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70 - e420b5ae81b770cf"
602
- shouldBeEnabled = "Yes"
603
- ignoreCount = "0"
604
- continueAfterRunningActions = "No"
605
- symbolName = "Lottie.FilepathImageProvider.imageForAsset(asset: Lottie.ImageAsset) -&gt; Swift.Optional&lt;__C.CGImageRef&gt;"
606
- moduleName = "Lottie"
607
- usesParentBreakpointCondition = "Yes"
608
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Public/iOS/FilepathImageProvider.swift"
609
- startingColumnNumber = "9223372036854775807"
610
- endingColumnNumber = "9223372036854775807"
611
- startingLineNumber = "40"
612
- endingLineNumber = "40"
613
- offsetFromSymbolStart = "724">
614
- </Location>
615
- <Location
616
- uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70 - 505df6532c6b683a"
617
- shouldBeEnabled = "Yes"
618
- ignoreCount = "0"
619
- continueAfterRunningActions = "No"
620
- symbolName = "Lottie.FilepathImageProvider.imageForAsset(asset: Lottie.ImageAsset) -&gt; Swift.Optional&lt;__C.CGImageRef&gt;"
621
- moduleName = "lottieBugReproduction"
622
- usesParentBreakpointCondition = "Yes"
623
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Public/iOS/FilepathImageProvider.swift"
624
- startingColumnNumber = "9223372036854775807"
625
- endingColumnNumber = "9223372036854775807"
626
- startingLineNumber = "40"
627
- endingLineNumber = "40"
628
- offsetFromSymbolStart = "724">
629
- </Location>
630
- </Locations>
631
- </BreakpointContent>
632
- </BreakpointProxy>
633
- <BreakpointProxy
634
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
635
- <BreakpointContent
636
- uuid = "8628051F-F131-475B-8FBA-5C9F7B7F9CF8"
637
- shouldBeEnabled = "Yes"
638
- ignoreCount = "0"
639
- continueAfterRunningActions = "No"
640
- filePath = "Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift"
641
- startingColumnNumber = "9223372036854775807"
642
- endingColumnNumber = "9223372036854775807"
643
- startingLineNumber = "49"
644
- endingLineNumber = "49"
645
- landmarkName = "reloadImages()"
646
- landmarkType = "7">
647
- <Locations>
648
- <Location
649
- uuid = "8628051F-F131-475B-8FBA-5C9F7B7F9CF8 - b71115c8bcbe1c53"
650
- shouldBeEnabled = "Yes"
651
- ignoreCount = "0"
652
- continueAfterRunningActions = "No"
653
- symbolName = "Lottie.LayerImageProvider.reloadImages() -&gt; ()"
654
- moduleName = "Lottie"
655
- usesParentBreakpointCondition = "Yes"
656
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift"
657
- startingColumnNumber = "9223372036854775807"
658
- endingColumnNumber = "9223372036854775807"
659
- startingLineNumber = "49"
660
- endingLineNumber = "49"
661
- offsetFromSymbolStart = "746">
662
- </Location>
663
- <Location
664
- uuid = "8628051F-F131-475B-8FBA-5C9F7B7F9CF8 - 36c5635116204a6"
665
- shouldBeEnabled = "Yes"
666
- ignoreCount = "0"
667
- continueAfterRunningActions = "No"
668
- symbolName = "Lottie.LayerImageProvider.reloadImages() -&gt; ()"
669
- moduleName = "lottieBugReproduction"
670
- usesParentBreakpointCondition = "Yes"
671
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift"
672
- startingColumnNumber = "9223372036854775807"
673
- endingColumnNumber = "9223372036854775807"
674
- startingLineNumber = "49"
675
- endingLineNumber = "49"
676
- offsetFromSymbolStart = "746">
677
- </Location>
678
- <Location
679
- uuid = "8628051F-F131-475B-8FBA-5C9F7B7F9CF8 - 2d1ae2090cf799a0"
680
- shouldBeEnabled = "Yes"
681
- ignoreCount = "0"
682
- continueAfterRunningActions = "No"
683
- symbolName = "Lottie.LayerImageProvider.reloadImages() -&gt; ()"
684
- moduleName = "Example (Multiplatform)"
685
- usesParentBreakpointCondition = "Yes"
686
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift"
687
- startingColumnNumber = "9223372036854775807"
688
- endingColumnNumber = "9223372036854775807"
689
- startingLineNumber = "49"
690
- endingLineNumber = "49"
691
- offsetFromSymbolStart = "746">
692
- </Location>
693
- </Locations>
33
+ startingLineNumber = "245"
34
+ endingLineNumber = "245"
35
+ landmarkName = "ShapeItemLayer"
36
+ landmarkType = "3">
694
37
  </BreakpointContent>
695
38
  </BreakpointProxy>
696
39
  </Breakpoints>