lottie-ios 4.3.4 → 4.4.1

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 (186) hide show
  1. package/.github/workflows/main.yml +60 -67
  2. package/Gemfile +1 -1
  3. package/Gemfile.lock +25 -25
  4. package/Lottie.xcodeproj/project.pbxproj +20 -0
  5. package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +4 -17
  6. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +37 -40
  7. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  8. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -705
  9. package/Package.resolved +20 -22
  10. package/Package.swift +3 -2
  11. package/README.md +21 -3
  12. package/Rakefile +47 -28
  13. package/Sources/PrivacyInfo.xcprivacy +23 -0
  14. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +1 -1
  15. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +23 -13
  16. package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +8 -2
  17. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +7 -1
  18. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +15 -2
  19. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +8 -1
  20. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +8 -1
  21. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +12 -1
  22. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +0 -1
  23. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +19 -11
  24. package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +45 -19
  25. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +38 -3
  26. package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +1 -1
  27. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +9 -2
  28. package/Sources/Private/CoreAnimation/Extensions/Keyframes+timeRemapping.swift +46 -0
  29. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +77 -13
  30. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +1 -1
  31. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +2 -2
  32. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +1 -1
  33. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -7
  34. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +19 -53
  35. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +2 -2
  36. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +2 -4
  37. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +5 -2
  38. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift +1 -1
  39. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift +10 -10
  40. package/Sources/Private/EmbeddedLibraries/LRUCache/LRUCache.swift +3 -3
  41. package/Sources/Private/EmbeddedLibraries/README.md +2 -0
  42. package/Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift +2 -2
  43. package/Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift +7 -7
  44. package/Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift +2 -2
  45. package/Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift +5 -5
  46. package/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift +1 -2
  47. package/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift +1 -3
  48. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +1 -2
  49. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -3
  50. package/Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift +2 -3
  51. package/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift +5 -12
  52. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +0 -1
  53. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +0 -2
  54. package/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift +3 -3
  55. package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +12 -12
  56. package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -2
  57. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +0 -2
  58. package/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift +1 -3
  59. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +0 -2
  60. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +0 -2
  61. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +1 -3
  62. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +0 -1
  63. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +0 -1
  64. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +1 -3
  65. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +1 -2
  66. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +0 -1
  67. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +0 -2
  68. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +0 -1
  69. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +0 -1
  70. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +0 -1
  71. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +2 -3
  72. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +1 -3
  73. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +2 -2
  74. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +0 -2
  75. package/Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift +0 -1
  76. package/Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift +0 -2
  77. package/Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift +0 -2
  78. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +0 -1
  79. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +0 -1
  80. package/Sources/Private/Model/Assets/Asset.swift +2 -3
  81. package/Sources/Private/Model/Assets/AssetLibrary.swift +11 -11
  82. package/Sources/Private/Model/Assets/ImageAsset.swift +20 -0
  83. package/Sources/Private/Model/Assets/PrecompAsset.swift +0 -2
  84. package/Sources/Private/Model/DictionaryInitializable.swift +18 -10
  85. package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +11 -8
  86. package/Sources/Private/Model/DotLottie/DotLottieUtils.swift +1 -1
  87. package/Sources/Private/Model/Extensions/Bundle.swift +1 -1
  88. package/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +0 -2
  89. package/Sources/Private/Model/Keyframes/KeyframeData.swift +1 -4
  90. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +1 -3
  91. package/Sources/Private/Model/LayerEffects/DropShadowEffect.swift +0 -2
  92. package/Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift +0 -2
  93. package/Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift +2 -3
  94. package/Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift +0 -2
  95. package/Sources/Private/Model/LayerEffects/LayerEffect.swift +2 -3
  96. package/Sources/Private/Model/LayerStyles/DropShadowStyle.swift +0 -2
  97. package/Sources/Private/Model/LayerStyles/LayerStyle.swift +2 -3
  98. package/Sources/Private/Model/Layers/ImageLayerModel.swift +0 -2
  99. package/Sources/Private/Model/Layers/LayerModel.swift +11 -5
  100. package/Sources/Private/Model/Layers/PreCompLayerModel.swift +0 -2
  101. package/Sources/Private/Model/Layers/ShapeLayerModel.swift +0 -2
  102. package/Sources/Private/Model/Layers/SolidLayerModel.swift +0 -2
  103. package/Sources/Private/Model/Layers/TextLayerModel.swift +0 -2
  104. package/Sources/Private/Model/Objects/DashPattern.swift +1 -3
  105. package/Sources/Private/Model/Objects/Marker.swift +0 -2
  106. package/Sources/Private/Model/Objects/Mask.swift +0 -2
  107. package/Sources/Private/Model/Objects/Transform.swift +46 -9
  108. package/Sources/Private/Model/ShapeItems/Ellipse.swift +0 -2
  109. package/Sources/Private/Model/ShapeItems/Fill.swift +0 -2
  110. package/Sources/Private/Model/ShapeItems/GradientFill.swift +1 -3
  111. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +1 -3
  112. package/Sources/Private/Model/ShapeItems/Group.swift +0 -2
  113. package/Sources/Private/Model/ShapeItems/Merge.swift +1 -3
  114. package/Sources/Private/Model/ShapeItems/Rectangle.swift +0 -2
  115. package/Sources/Private/Model/ShapeItems/Repeater.swift +0 -2
  116. package/Sources/Private/Model/ShapeItems/RoundedCorners.swift +0 -2
  117. package/Sources/Private/Model/ShapeItems/Shape.swift +0 -2
  118. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +2 -3
  119. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -2
  120. package/Sources/Private/Model/ShapeItems/Star.swift +1 -3
  121. package/Sources/Private/Model/ShapeItems/Stroke.swift +0 -2
  122. package/Sources/Private/Model/ShapeItems/Trim.swift +1 -3
  123. package/Sources/Private/Model/Text/Font.swift +0 -2
  124. package/Sources/Private/Model/Text/Glyph.swift +0 -2
  125. package/Sources/Private/Model/Text/TextAnimator.swift +0 -2
  126. package/Sources/Private/Model/Text/TextDocument.swift +2 -4
  127. package/Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift +0 -2
  128. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +4 -5
  129. package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +2 -3
  130. package/Sources/Private/Utility/Extensions/DataExtension.swift +0 -1
  131. package/Sources/Private/Utility/Extensions/MathKit.swift +1 -1
  132. package/Sources/Private/Utility/Extensions/StringExtensions.swift +5 -0
  133. package/Sources/Private/Utility/Helpers/AnimationContext.swift +2 -3
  134. package/Sources/Private/Utility/Helpers/AnyEquatable.swift +0 -2
  135. package/Sources/Private/Utility/LottieAnimationSource.swift +11 -1
  136. package/Sources/Private/Utility/Primitives/BezierPath.swift +2 -3
  137. package/Sources/Private/Utility/Primitives/CGPointExtension.swift +1 -1
  138. package/Sources/Private/Utility/Primitives/ColorExtension.swift +1 -2
  139. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +6 -6
  140. package/Sources/Public/Animation/LottieAnimation.swift +2 -2
  141. package/Sources/Public/Animation/LottieAnimationHelpers.swift +7 -5
  142. package/Sources/Public/Animation/LottieAnimationLayer.swift +37 -51
  143. package/Sources/Public/Animation/LottieAnimationView.swift +7 -13
  144. package/Sources/Public/Animation/LottieAnimationViewInitializers.swift +3 -3
  145. package/Sources/Public/Animation/LottiePlaybackMode.swift +53 -0
  146. package/Sources/Public/Animation/LottieView.swift +143 -48
  147. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +0 -2
  148. package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +11 -1
  149. package/Sources/Public/AnimationCache/LRUAnimationCache.swift +0 -2
  150. package/Sources/Public/Controls/AnimatedButton.swift +4 -6
  151. package/Sources/Public/Controls/AnimatedControl.swift +1 -3
  152. package/Sources/Public/Controls/AnimatedSwitch.swift +1 -3
  153. package/Sources/Public/DotLottie/Cache/DotLottieCache.swift +9 -0
  154. package/Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift +1 -3
  155. package/Sources/Public/DotLottie/DotLottieConfiguration.swift +53 -5
  156. package/Sources/Public/DotLottie/DotLottieFile.swift +4 -3
  157. package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +6 -6
  158. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +0 -2
  159. package/Sources/Public/DynamicProperties/AnyValueProvider.swift +0 -1
  160. package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +2 -2
  161. package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +1 -1
  162. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +1 -1
  163. package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +1 -1
  164. package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +1 -1
  165. package/Sources/Public/FontProvider/AnimationFontProvider.swift +0 -2
  166. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +0 -2
  167. package/Sources/Public/Keyframes/Interpolatable.swift +26 -0
  168. package/Sources/Public/Primitives/LottieColor.swift +0 -2
  169. package/Sources/Public/Primitives/Vectors.swift +0 -2
  170. package/Sources/Public/TextProvider/AnimationTextProvider.swift +0 -2
  171. package/Sources/Public/iOS/AnimationSubview.swift +0 -1
  172. package/Sources/Public/iOS/BundleImageProvider.swift +3 -8
  173. package/Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +1 -1
  174. package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +5 -9
  175. package/Sources/Public/iOS/UIColorExtension.swift +1 -2
  176. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +3 -6
  177. package/lottie-ios.podspec +6 -4
  178. package/package.json +1 -1
  179. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  180. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  181. package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
  182. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  183. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -6
  184. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +0 -153
  185. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +0 -231
  186. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
@@ -7,63 +7,60 @@ on:
7
7
  branches: [ master ]
8
8
 
9
9
  jobs:
10
- build-package-macos-12:
10
+ build-package-no-visionOS:
11
11
  name: "Build Package"
12
- runs-on: macos-12
12
+ runs-on: macos-13
13
13
  strategy:
14
14
  fail-fast: false
15
15
  matrix:
16
16
  xcode:
17
- - '13.4.1' # Swift 5.6
17
+ - '14.1' # Swift 5.7
18
+ - '14.3' # Swift 5.8
18
19
  steps:
19
20
  - uses: actions/checkout@v2
20
21
  - uses: ./.github/actions/setup
21
22
  with:
22
23
  xcode: ${{ matrix.xcode }}
23
24
  - name: Build Package
25
+ # Only Xcode 15.2 and later support visionOS, so exclude it on earlier versions.
24
26
  run: SKIP_VISION_OS=true bundle exec rake build:package:all
25
27
 
26
- build-package-macos-13:
28
+ build-package:
27
29
  name: "Build Package"
28
- runs-on: macos-13
30
+ runs-on: macos-14
29
31
  strategy:
30
32
  fail-fast: false
31
33
  matrix:
32
34
  xcode:
33
- - '14.2' # Swift 5.7
34
- - '14.3' # Swift 5.8
35
- - '15.0' # Swift 5.9
35
+ - '15.2' # Swift 5.9
36
36
  steps:
37
37
  - uses: actions/checkout@v2
38
38
  - uses: ./.github/actions/setup
39
39
  with:
40
40
  xcode: ${{ matrix.xcode }}
41
41
  - name: Build Package
42
- # Once there is a production Xcode version with the visionOS SDK,
43
- # we will want to use that version without `SKIP_VISION_OS=true`
44
- run: SKIP_VISION_OS=true bundle exec rake build:package:all
42
+ run: bundle exec rake build:package:all
43
+
45
44
 
46
45
  build-example:
47
46
  name: "Build Example App"
48
- runs-on: macos-13
47
+ runs-on: macos-14
49
48
  steps:
50
49
  - uses: actions/checkout@v2
51
50
  - uses: ./.github/actions/setup
52
51
  with:
53
- xcode: '15.0' # Swift 5.9
52
+ xcode: '15.2' # Swift 5.9
54
53
  - name: Build Example
55
- # Once there is a production Xcode version with the visionOS SDK,
56
- # we will want to remove `SKIP_VISION_OS=true`
57
- run: SKIP_VISION_OS=true bundle exec rake build:example:all
54
+ run: bundle exec rake build:example:all
58
55
 
59
56
  test-package:
60
57
  name: "Test Package"
61
- runs-on: macos-13
58
+ runs-on: macos-14
62
59
  steps:
63
60
  - uses: actions/checkout@v2
64
61
  - uses: ./.github/actions/setup
65
62
  with:
66
- xcode: '14.3' # Swift 5.8
63
+ xcode: '15.2' # Swift 5.9
67
64
  - name: Test Package
68
65
  run: bundle exec rake test:package
69
66
  - name: Process test artifacts
@@ -78,7 +75,7 @@ jobs:
78
75
 
79
76
  emerge-upload:
80
77
  name: "Emerge Upload"
81
- runs-on: macos-13
78
+ runs-on: macos-14
82
79
  steps:
83
80
  - uses: actions/checkout@v2
84
81
  - uses: ./.github/actions/setup
@@ -88,87 +85,83 @@ jobs:
88
85
  EMERGE_API_TOKEN: ${{ secrets.EMERGE_API_TOKEN }}
89
86
  PR_NUMBER: ${{ github.event.number }}
90
87
 
91
- build-xcframework-macos-12:
88
+ build-xcframework-minimum-supported-version:
92
89
  name: "Build XCFramework"
93
- runs-on: macos-12
90
+ runs-on: macos-13
94
91
  strategy:
95
92
  matrix:
96
93
  xcode:
97
94
  # XCFrameworks are forwards-compatible but not backwards-compatible.
98
95
  # The Xcode version we use for this job is that oldest Xcode version that
99
96
  # will be able to use these XCFrameworks and the lottie-spm package.
100
- - '13.4.1' # Swift 5.6.1
97
+ # This should be the minimum Xcode version permitted by the App Store.
98
+ # As of April 2023, this is Xcode 14.1: https://developer.apple.com/news/?id=jd9wcyov
99
+ # - TODO: Once this minimum supported Xcode version is 15.0 or later,
100
+ # we can use Xcode 15.2 here and remove the `build-xcframework-with-visionOS-support` job.
101
+ # Testing in https://github.com/airbnb/lottie-spm/pull/12 shows that Xcode 15.0 can
102
+ # use an XCFramework built by Xcode 15.2.
103
+ - '14.1' # Swift 5.7.1
101
104
  steps:
102
105
  - uses: actions/checkout@v2
106
+ - uses: apple-actions/import-codesign-certs@v2
107
+ continue-on-error: true
108
+ with:
109
+ p12-file-base64: ${{ secrets.SIGNING_CERTIFICATE_BASE_64 }}
110
+ p12-password: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }}
103
111
  - uses: ./.github/actions/setup
104
112
  with:
105
113
  xcode: ${{ matrix.xcode }}
106
114
  - name: Build XCFramework
107
- # Once there is a production Xcode version with the visionOS SDK, we will
108
- # need to also build an XCFramework using that version but without `SKIP_VISION_OS=true`
109
115
  run: SKIP_VISION_OS=true bundle exec rake build:xcframework[Lottie-Xcode-${{ matrix.xcode }}]
110
116
  - name: Upload XCFramework
111
117
  uses: actions/upload-artifact@v2
112
118
  with:
113
119
  name: BuildProducts
114
- # The xcframework is at the path `.build/archives/Lottie.xcframework.zip`.
115
- # GitHub always zips the artifacts before uploading, so if we uploaded the .xframework.zip
116
- # directly then it would actually upload a double-zip (a .zip containing our `Lottie.xcframework.zip`).
117
- # This is confusing especially since macOS Archive Utility automatially unzips both layers at once.
118
- # Instead, we upload the entire archives folder, resulting in an `XCFramework.zip` that unzips
119
- # to an `archives` directory containing our `Lottie.xcframework.zip`.
120
120
  path: .build/archives
121
121
 
122
- cocoapod:
123
- name: "Lint CocoaPods podspec"
124
- runs-on: macos-13
125
- steps:
126
- - uses: actions/checkout@v2
127
- - uses: ./.github/actions/setup
128
- with:
129
- install-mint: false
130
- - name: Lint CocoaPod Podspec
131
- run: bundle exec rake lint:podspec
132
-
133
- spm-xcode-15:
134
- name: "Test Swift Package Manager"
135
- runs-on: macos-13
122
+ build-xcframework-with-visionOS-support:
123
+ name: "Build XCFramework"
124
+ runs-on: macos-14
136
125
  strategy:
137
126
  matrix:
138
127
  xcode:
139
- - '15.0' # Swift 5.9
128
+ - '15.2' # Swift 5.9, first Xcode version with visionOS support.
140
129
  steps:
141
130
  - uses: actions/checkout@v2
131
+ - uses: apple-actions/import-codesign-certs@v2
132
+ continue-on-error: true
133
+ with:
134
+ p12-file-base64: ${{ secrets.SIGNING_CERTIFICATE_BASE_64 }}
135
+ p12-password: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }}
142
136
  - uses: ./.github/actions/setup
143
137
  with:
144
- install-mint: true
145
138
  xcode: ${{ matrix.xcode }}
146
- - name: Test Swift Package Manager support
147
- run: bundle exec rake test:spm
139
+ - name: Build XCFramework
140
+ run: bundle exec rake build:xcframework[Lottie-Xcode-${{ matrix.xcode }}]
141
+ - name: Upload XCFramework
142
+ uses: actions/upload-artifact@v2
143
+ with:
144
+ name: BuildProducts
145
+ path: .build/archives
148
146
 
149
- spm-xcode-14:
150
- name: "Test Swift Package Manager"
151
- runs-on: macos-13
152
- strategy:
153
- matrix:
154
- xcode:
155
- - '14.3' # Swift 5.8
147
+ cocoapod:
148
+ name: "Lint CocoaPods podspec"
149
+ runs-on: macos-14
156
150
  steps:
157
151
  - uses: actions/checkout@v2
158
152
  - uses: ./.github/actions/setup
159
153
  with:
160
- install-mint: true
161
- xcode: ${{ matrix.xcode }}
162
- - name: Test Swift Package Manager support
163
- run: SKIP_VISION_OS=true bundle exec rake test:spm
154
+ install-mint: false
155
+ - name: Lint CocoaPod Podspec
156
+ run: bundle exec rake lint:podspec
164
157
 
165
- spm-xcode-13:
158
+ spm-xcode-15:
166
159
  name: "Test Swift Package Manager"
167
- runs-on: macos-12
160
+ runs-on: macos-14
168
161
  strategy:
169
162
  matrix:
170
163
  xcode:
171
- - '13.4.1' # Swift 5.6
164
+ - '15.2' # Swift 5.9
172
165
  steps:
173
166
  - uses: actions/checkout@v2
174
167
  - uses: ./.github/actions/setup
@@ -176,24 +169,24 @@ jobs:
176
169
  install-mint: true
177
170
  xcode: ${{ matrix.xcode }}
178
171
  - name: Test Swift Package Manager support
179
- run: SKIP_VISION_OS=true bundle exec rake test:spm
172
+ run: bundle exec rake test:spm
180
173
 
181
174
  carthage:
182
175
  name: "Test Carthage support"
183
- runs-on: macos-13
176
+ runs-on: macos-14
184
177
  steps:
185
178
  - uses: actions/checkout@v2
186
179
  - uses: ./.github/actions/setup
187
180
  with:
188
181
  install-mint: true
189
182
  install-carthage: true
190
- xcode: '14.3' # Swift 5.8
183
+ xcode: '15.2' # Swift 5.9
191
184
  - name: Test Carthage support
192
185
  run: bundle exec rake test:carthage
193
186
 
194
187
  swiftlint:
195
188
  name: "Lint Swift"
196
- runs-on: macos-13
189
+ runs-on: macos-14
197
190
  steps:
198
191
  - uses: actions/checkout@v2
199
192
  - uses: ./.github/actions/setup
@@ -202,7 +195,7 @@ jobs:
202
195
 
203
196
  embedded-libraries:
204
197
  name: "Lint Embedded Libraries"
205
- runs-on: macos-13
198
+ runs-on: macos-14
206
199
  steps:
207
200
  - uses: actions/checkout@v2
208
201
  - uses: ./.github/actions/setup
package/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org' do
2
- gem 'cocoapods', '~> 1.11.0'
2
+ gem 'cocoapods', '~> 1.15.0'
3
3
  gem "rake", "~> 13.0.0"
4
4
  gem 'git', '~> 1.18'
5
5
  end
package/Gemfile.lock CHANGED
@@ -4,9 +4,9 @@ GEM
4
4
  GEM
5
5
  remote: https://rubygems.org/
6
6
  specs:
7
- CFPropertyList (3.0.5)
7
+ CFPropertyList (3.0.6)
8
8
  rexml
9
- activesupport (6.1.4.1)
9
+ activesupport (6.1.7.6)
10
10
  concurrent-ruby (~> 1.0, >= 1.0.2)
11
11
  i18n (>= 1.6, < 2)
12
12
  minitest (>= 5.1)
@@ -18,16 +18,16 @@ GEM
18
18
  httpclient (~> 2.8, >= 2.8.3)
19
19
  json (>= 1.5.1)
20
20
  atomos (0.1.3)
21
- claide (1.0.3)
22
- cocoapods (1.11.2)
21
+ claide (1.1.0)
22
+ cocoapods (1.15.0)
23
23
  addressable (~> 2.8)
24
24
  claide (>= 1.0.2, < 2.0)
25
- cocoapods-core (= 1.11.2)
25
+ cocoapods-core (= 1.15.0)
26
26
  cocoapods-deintegrate (>= 1.0.3, < 2.0)
27
- cocoapods-downloader (>= 1.4.0, < 2.0)
27
+ cocoapods-downloader (>= 2.1, < 3.0)
28
28
  cocoapods-plugins (>= 1.0.0, < 2.0)
29
29
  cocoapods-search (>= 1.0.0, < 2.0)
30
- cocoapods-trunk (>= 1.4.0, < 2.0)
30
+ cocoapods-trunk (>= 1.6.0, < 2.0)
31
31
  cocoapods-try (>= 1.1.0, < 2.0)
32
32
  colored2 (~> 3.1)
33
33
  escape (~> 0.0.4)
@@ -35,10 +35,10 @@ GEM
35
35
  gh_inspector (~> 1.0)
36
36
  molinillo (~> 0.8.0)
37
37
  nap (~> 1.0)
38
- ruby-macho (>= 1.0, < 3.0)
39
- xcodeproj (>= 1.21.0, < 2.0)
40
- cocoapods-core (1.11.2)
41
- activesupport (>= 5.0, < 7)
38
+ ruby-macho (>= 2.3.0, < 3.0)
39
+ xcodeproj (>= 1.23.0, < 2.0)
40
+ cocoapods-core (1.15.0)
41
+ activesupport (>= 5.0, < 8)
42
42
  addressable (~> 2.8)
43
43
  algoliasearch (~> 1.0)
44
44
  concurrent-ruby (~> 1.1)
@@ -48,7 +48,7 @@ GEM
48
48
  public_suffix (~> 4.0)
49
49
  typhoeus (~> 1.0)
50
50
  cocoapods-deintegrate (1.0.5)
51
- cocoapods-downloader (1.6.3)
51
+ cocoapods-downloader (2.1)
52
52
  cocoapods-plugins (1.0.0)
53
53
  nap
54
54
  cocoapods-search (1.0.1)
@@ -57,11 +57,11 @@ GEM
57
57
  netrc (~> 0.11)
58
58
  cocoapods-try (1.2.0)
59
59
  colored2 (3.1.2)
60
- concurrent-ruby (1.1.9)
60
+ concurrent-ruby (1.2.3)
61
61
  escape (0.0.4)
62
- ethon (0.15.0)
62
+ ethon (0.16.0)
63
63
  ffi (>= 1.15.0)
64
- ffi (1.15.4)
64
+ ffi (1.16.3)
65
65
  fourflusher (2.3.1)
66
66
  fuzzy_match (2.0.4)
67
67
  gh_inspector (1.1.3)
@@ -69,10 +69,10 @@ GEM
69
69
  addressable (~> 2.8)
70
70
  rchardet (~> 1.8)
71
71
  httpclient (2.8.3)
72
- i18n (1.8.11)
72
+ i18n (1.14.1)
73
73
  concurrent-ruby (~> 1.0)
74
- json (2.6.1)
75
- minitest (5.14.4)
74
+ json (2.7.1)
75
+ minitest (5.21.2)
76
76
  molinillo (0.8.0)
77
77
  nanaimo (0.3.0)
78
78
  nap (1.1.0)
@@ -80,28 +80,28 @@ GEM
80
80
  public_suffix (4.0.6)
81
81
  rake (13.0.6)
82
82
  rchardet (1.8.0)
83
- rexml (3.2.5)
83
+ rexml (3.2.6)
84
84
  ruby-macho (2.5.1)
85
- typhoeus (1.4.0)
85
+ typhoeus (1.4.1)
86
86
  ethon (>= 0.9.0)
87
- tzinfo (2.0.4)
87
+ tzinfo (2.0.6)
88
88
  concurrent-ruby (~> 1.0)
89
- xcodeproj (1.21.0)
89
+ xcodeproj (1.24.0)
90
90
  CFPropertyList (>= 2.3.3, < 4.0)
91
91
  atomos (~> 0.1.3)
92
92
  claide (>= 1.0.2, < 2.0)
93
93
  colored2 (~> 3.1)
94
94
  nanaimo (~> 0.3.0)
95
95
  rexml (~> 3.2.4)
96
- zeitwerk (2.5.1)
96
+ zeitwerk (2.6.12)
97
97
 
98
98
  PLATFORMS
99
99
  ruby
100
100
 
101
101
  DEPENDENCIES
102
- cocoapods (~> 1.11.0)!
102
+ cocoapods (~> 1.15.0)!
103
103
  git (~> 1.18)!
104
104
  rake (~> 13.0.0)!
105
105
 
106
106
  BUNDLED WITH
107
- 2.2.16
107
+ 2.3.19
@@ -331,6 +331,10 @@
331
331
  0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
332
332
  0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
333
333
  089C50C22ABA0C6D007903D3 /* LoggingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089C50C12ABA0C6D007903D3 /* LoggingTests.swift */; };
334
+ 089E5D9F2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089E5D9E2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift */; };
335
+ 089E5DA02B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089E5D9E2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift */; };
336
+ 089E5DA12B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089E5D9E2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift */; };
337
+ 089E5DA22B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089E5D9E2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift */; };
334
338
  08AB05552A61C20400DE86FD /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08AB05542A61C20400DE86FD /* ReducedMotionOption.swift */; };
335
339
  08AB05562A61C20400DE86FD /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08AB05542A61C20400DE86FD /* ReducedMotionOption.swift */; };
336
340
  08AB05572A61C20400DE86FD /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08AB05542A61C20400DE86FD /* ReducedMotionOption.swift */; };
@@ -556,6 +560,10 @@
556
560
  08F8B20F2898A7B100CB5323 /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */; };
557
561
  08F8B211289990B700CB5323 /* Samples in Resources */ = {isa = PBXBuildFile; fileRef = 08F8B210289990B700CB5323 /* Samples */; };
558
562
  08F8B213289990CB00CB5323 /* SnapshotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F8B212289990CB00CB5323 /* SnapshotTests.swift */; };
563
+ 08FB47C62B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 08FB47C52B23B86500744478 /* PrivacyInfo.xcprivacy */; };
564
+ 08FB47C72B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 08FB47C52B23B86500744478 /* PrivacyInfo.xcprivacy */; };
565
+ 08FB47C82B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 08FB47C52B23B86500744478 /* PrivacyInfo.xcprivacy */; };
566
+ 08FB47C92B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 08FB47C52B23B86500744478 /* PrivacyInfo.xcprivacy */; };
559
567
  08FE934E28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */; };
560
568
  08FE934F28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */; };
561
569
  08FE935028F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */; };
@@ -1182,6 +1190,7 @@
1182
1190
  0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewInitializers.swift; sourceTree = "<group>"; };
1183
1191
  0887347428F0CCDD00458627 /* LottieAnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationView.swift; sourceTree = "<group>"; };
1184
1192
  089C50C12ABA0C6D007903D3 /* LoggingTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoggingTests.swift; sourceTree = "<group>"; };
1193
+ 089E5D9E2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Keyframes+timeRemapping.swift"; sourceTree = "<group>"; };
1185
1194
  08AB05542A61C20400DE86FD /* ReducedMotionOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReducedMotionOption.swift; sourceTree = "<group>"; };
1186
1195
  08AB05582A61C5B700DE86FD /* DecodingStrategy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecodingStrategy.swift; sourceTree = "<group>"; };
1187
1196
  08AB055C2A61C5CC00DE86FD /* RenderingEngineOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RenderingEngineOption.swift; sourceTree = "<group>"; };
@@ -1263,6 +1272,7 @@
1263
1272
  08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepeaterLayer.swift; sourceTree = "<group>"; };
1264
1273
  08F8B210289990B700CB5323 /* Samples */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Samples; sourceTree = "<group>"; };
1265
1274
  08F8B212289990CB00CB5323 /* SnapshotTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapshotTests.swift; sourceTree = "<group>"; };
1275
+ 08FB47C52B23B86500744478 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
1266
1276
  08FE934D28F4CCAC00D3A7E6 /* InfiniteOpaqueAnimationLayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfiniteOpaqueAnimationLayer.swift; sourceTree = "<group>"; };
1267
1277
  19465F51282F998B00BB2C97 /* CachedImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CachedImageProvider.swift; sourceTree = "<group>"; };
1268
1278
  2E044E262820536800FA773B /* AutomaticEngineTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutomaticEngineTests.swift; sourceTree = "<group>"; };
@@ -1738,6 +1748,7 @@
1738
1748
  children = (
1739
1749
  2EAF59C027A0798600E00531 /* Sources */,
1740
1750
  2E8040BA27A07343006E74CB /* Tests */,
1751
+ 08FB47C52B23B86500744478 /* PrivacyInfo.xcprivacy */,
1741
1752
  2E80409B27A0725D006E74CB /* Products */,
1742
1753
  );
1743
1754
  sourceTree = "<group>";
@@ -2139,6 +2150,7 @@
2139
2150
  2E9C95AA2822F43100677516 /* CALayer+fillBounds.swift */,
2140
2151
  2E9C95AB2822F43100677516 /* Keyframes+combined.swift */,
2141
2152
  2E9C95AC2822F43100677516 /* KeyframeGroup+exactlyOneKeyframe.swift */,
2153
+ 089E5D9E2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift */,
2142
2154
  );
2143
2155
  path = Extensions;
2144
2156
  sourceTree = "<group>";
@@ -2632,6 +2644,7 @@
2632
2644
  isa = PBXResourcesBuildPhase;
2633
2645
  buildActionMask = 2147483647;
2634
2646
  files = (
2647
+ 08FB47C92B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */,
2635
2648
  );
2636
2649
  runOnlyForDeploymentPostprocessing = 0;
2637
2650
  };
@@ -2639,6 +2652,7 @@
2639
2652
  isa = PBXResourcesBuildPhase;
2640
2653
  buildActionMask = 2147483647;
2641
2654
  files = (
2655
+ 08FB47C62B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */,
2642
2656
  );
2643
2657
  runOnlyForDeploymentPostprocessing = 0;
2644
2658
  };
@@ -2655,6 +2669,7 @@
2655
2669
  isa = PBXResourcesBuildPhase;
2656
2670
  buildActionMask = 2147483647;
2657
2671
  files = (
2672
+ 08FB47C72B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */,
2658
2673
  );
2659
2674
  runOnlyForDeploymentPostprocessing = 0;
2660
2675
  };
@@ -2662,6 +2677,7 @@
2662
2677
  isa = PBXResourcesBuildPhase;
2663
2678
  buildActionMask = 2147483647;
2664
2679
  files = (
2680
+ 08FB47C82B23B86500744478 /* PrivacyInfo.xcprivacy in Resources */,
2665
2681
  );
2666
2682
  runOnlyForDeploymentPostprocessing = 0;
2667
2683
  };
@@ -2932,6 +2948,7 @@
2932
2948
  080DEFB12A9570FE00BE2D96 /* WillDisplayProviding.swift in Sources */,
2933
2949
  080DEFE82A95711E00BE2D96 /* ImageLayer.swift in Sources */,
2934
2950
  080DF0672A95717600BE2D96 /* AnimatorNodeDebugging.swift in Sources */,
2951
+ 089E5DA22B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */,
2935
2952
  080DEFAC2A9570FE00BE2D96 /* StyleIDProviding.swift in Sources */,
2936
2953
  080DF0002A95712400BE2D96 /* CombinedShapeAnimation.swift in Sources */,
2937
2954
  080DEFD42A95711400BE2D96 /* Archive+Helpers.swift in Sources */,
@@ -2994,6 +3011,7 @@
2994
3011
  0887346F28F0CBDE00458627 /* LottieAnimation.swift in Sources */,
2995
3012
  08C002002A46150D00AB54BA /* Data+CompressionDeprecated.swift in Sources */,
2996
3013
  0820D5B82A8BF159007D705C /* DropShadowStyle.swift in Sources */,
3014
+ 089E5D9F2B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */,
2997
3015
  2E9C97412822F43100677516 /* TestHelpers.swift in Sources */,
2998
3016
  08EF21DC289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
2999
3017
  2E9C96152822F43100677516 /* Transform.swift in Sources */,
@@ -3308,6 +3326,7 @@
3308
3326
  2E9C966D2822F43100677516 /* LayerImageProvider.swift in Sources */,
3309
3327
  2EAF5ABD27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
3310
3328
  2EAF5AEA27A0798700E00531 /* AnimationTextProvider.swift in Sources */,
3329
+ 089E5DA02B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */,
3311
3330
  08E206FE2A56014E002DCE17 /* Diffable.swift in Sources */,
3312
3331
  2E9C96672822F43100677516 /* LayerTransformNode.swift in Sources */,
3313
3332
  0887347028F0CBDE00458627 /* LottieAnimation.swift in Sources */,
@@ -3596,6 +3615,7 @@
3596
3615
  0887347128F0CBDE00458627 /* LottieAnimation.swift in Sources */,
3597
3616
  2E9C97432822F43100677516 /* TestHelpers.swift in Sources */,
3598
3617
  0820D5BA2A8BF159007D705C /* DropShadowStyle.swift in Sources */,
3618
+ 089E5DA12B4CCD3F00F4F836 /* Keyframes+timeRemapping.swift in Sources */,
3599
3619
  08EF21DE289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
3600
3620
  2E9C96172822F43100677516 /* Transform.swift in Sources */,
3601
3621
  2E9C97492822F43100677516 /* CGFloatExtensions.swift in Sources */,
@@ -7,35 +7,22 @@
7
7
  <key>Lottie (iOS).xcscheme_^#shared#^_</key>
8
8
  <dict>
9
9
  <key>orderHint</key>
10
- <integer>3</integer>
10
+ <integer>2</integer>
11
11
  </dict>
12
12
  <key>Lottie (macOS).xcscheme_^#shared#^_</key>
13
13
  <dict>
14
14
  <key>orderHint</key>
15
- <integer>4</integer>
15
+ <integer>3</integer>
16
16
  </dict>
17
17
  <key>Lottie (tvOS).xcscheme_^#shared#^_</key>
18
18
  <dict>
19
19
  <key>orderHint</key>
20
- <integer>5</integer>
20
+ <integer>4</integer>
21
21
  </dict>
22
22
  <key>Lottie (visionOS).xcscheme_^#shared#^_</key>
23
23
  <dict>
24
24
  <key>orderHint</key>
25
- <integer>6</integer>
26
- </dict>
27
- </dict>
28
- <key>SuppressBuildableAutocreation</key>
29
- <dict>
30
- <key>080DEF612A95707B00BE2D96</key>
31
- <dict>
32
- <key>primary</key>
33
- <true/>
34
- </dict>
35
- <key>2EAF59B827A078E400E00531</key>
36
- <dict>
37
- <key>primary</key>
38
- <true/>
25
+ <integer>5</integer>
39
26
  </dict>
40
27
  </dict>
41
28
  </dict>
@@ -1,43 +1,40 @@
1
1
  {
2
- "object": {
3
- "pins": [
4
- {
5
- "package": "Difference",
6
- "repositoryURL": "https://github.com/krzysztofzablocki/Difference",
7
- "state": {
8
- "branch": null,
9
- "revision": "02fe1111edc8318c4f8a0da96336fcbcc201f38b",
10
- "version": "1.0.1"
11
- }
12
- },
13
- {
14
- "package": "AirbnbSwift",
15
- "repositoryURL": "https://github.com/airbnb/swift",
16
- "state": {
17
- "branch": null,
18
- "revision": "6900f5ab7ab7394ac85eb9da52b2528ee329b206",
19
- "version": "1.0.4"
20
- }
21
- },
22
- {
23
- "package": "swift-argument-parser",
24
- "repositoryURL": "https://github.com/apple/swift-argument-parser",
25
- "state": {
26
- "branch": null,
27
- "revision": "fddd1c00396eed152c45a46bea9f47b98e59301d",
28
- "version": "1.2.0"
29
- }
30
- },
31
- {
32
- "package": "swift-snapshot-testing",
33
- "repositoryURL": "https://github.com/pointfreeco/swift-snapshot-testing.git",
34
- "state": {
35
- "branch": null,
36
- "revision": "0c2826f26d00ff5ddf2de92cb6b2139b0dd3d1ee",
37
- "version": null
38
- }
2
+ "pins" : [
3
+ {
4
+ "identity" : "difference",
5
+ "kind" : "remoteSourceControl",
6
+ "location" : "https://github.com/krzysztofzablocki/Difference",
7
+ "state" : {
8
+ "revision" : "02fe1111edc8318c4f8a0da96336fcbcc201f38b",
9
+ "version" : "1.0.1"
39
10
  }
40
- ]
41
- },
42
- "version": 1
11
+ },
12
+ {
13
+ "identity" : "swift",
14
+ "kind" : "remoteSourceControl",
15
+ "location" : "https://github.com/airbnb/swift",
16
+ "state" : {
17
+ "revision" : "6900f5ab7ab7394ac85eb9da52b2528ee329b206",
18
+ "version" : "1.0.4"
19
+ }
20
+ },
21
+ {
22
+ "identity" : "swift-argument-parser",
23
+ "kind" : "remoteSourceControl",
24
+ "location" : "https://github.com/apple/swift-argument-parser",
25
+ "state" : {
26
+ "revision" : "fddd1c00396eed152c45a46bea9f47b98e59301d",
27
+ "version" : "1.2.0"
28
+ }
29
+ },
30
+ {
31
+ "identity" : "swift-snapshot-testing",
32
+ "kind" : "remoteSourceControl",
33
+ "location" : "https://github.com/pointfreeco/swift-snapshot-testing.git",
34
+ "state" : {
35
+ "revision" : "0c2826f26d00ff5ddf2de92cb6b2139b0dd3d1ee"
36
+ }
37
+ }
38
+ ],
39
+ "version" : 2
43
40
  }