lottie-ios 3.2.2 → 3.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 (316) hide show
  1. package/.github/actions/setup/action.yml +32 -0
  2. package/.github/issue_template.md +6 -23
  3. package/.github/workflows/main.yml +98 -0
  4. package/.spi.yml +6 -0
  5. package/.swift-version +1 -0
  6. package/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +7 -0
  7. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  8. package/.swiftpm/xcode/xcuserdata/{brandonwithrow.xcuserdatad → cal.xcuserdatad}/xcschemes/xcschememanagement.plist +25 -15
  9. package/.swiftpm/xcode/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  10. package/Gemfile +4 -0
  11. package/Gemfile.lock +102 -0
  12. package/Lottie.xcodeproj/project.pbxproj +2003 -1972
  13. package/Lottie.xcodeproj/project.xcworkspace/contents.xcworkspacedata +1 -1
  14. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  15. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_iOS.xcscheme → Lottie (iOS).xcscheme } +15 -18
  16. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_macOS.xcscheme → Lottie (macOS).xcscheme } +7 -20
  17. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_tvOS.xcscheme → Lottie (tvOS).xcscheme } +5 -18
  18. package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
  19. package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +24 -0
  20. package/Lottie.xcworkspace/contents.xcworkspacedata +10 -0
  21. package/Lottie.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  22. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +115 -0
  23. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  24. package/{Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad → Lottie.xcworkspace/xcuserdata/cal.xcuserdatad}/xcdebugger/Breakpoints_v2.xcbkptlist +2 -2
  25. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +153 -0
  26. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  27. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +39 -0
  28. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +25 -0
  29. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
  30. package/Package.resolved +88 -0
  31. package/Package.swift +10 -15
  32. package/README.md +40 -60
  33. package/Rakefile +121 -0
  34. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +81 -0
  35. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +448 -0
  36. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +53 -0
  37. package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +41 -0
  38. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +28 -0
  39. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +210 -0
  40. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +229 -0
  41. package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +52 -0
  42. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +31 -0
  43. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +246 -0
  44. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +95 -0
  45. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +70 -0
  46. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +205 -0
  47. package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +37 -0
  48. package/Sources/Private/CoreAnimation/CompatibilityTracker.swift +130 -0
  49. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +492 -0
  50. package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +35 -0
  51. package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +37 -0
  52. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +73 -0
  53. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +83 -0
  54. package/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift +33 -0
  55. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +87 -0
  56. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +131 -0
  57. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +94 -0
  58. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +79 -0
  59. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +60 -0
  60. package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +138 -0
  61. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +140 -0
  62. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +302 -0
  63. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +319 -0
  64. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +47 -0
  65. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +91 -0
  66. package/Sources/Private/CoreAnimation/Layers/TransformLayer.swift +11 -0
  67. package/Sources/Private/CoreAnimation/ValueProviderStore.swift +139 -0
  68. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/CompositionLayer.swift +93 -85
  69. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ImageCompositionLayer.swift +24 -21
  70. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/MaskContainerLayer.swift +75 -54
  71. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/NullCompositionLayer.swift +5 -5
  72. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/PreCompositionLayer.swift +61 -44
  73. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ShapeCompositionLayer.swift +22 -20
  74. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/SolidCompositionLayer.swift +26 -17
  75. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/TextCompositionLayer.swift +42 -36
  76. package/{lottie-swift/src/Private/LayerContainers/AnimationContainer.swift → Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift} +200 -140
  77. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +47 -0
  78. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/CompositionLayersInitializer.swift +33 -24
  79. package/{lottie-swift/src/Private/LayerContainers/Utility/TextLayer.swift → Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift} +120 -106
  80. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/InvertedMatteLayer.swift +25 -24
  81. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +41 -0
  82. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerImageProvider.swift +20 -16
  83. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +40 -0
  84. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerTransformNode.swift +82 -67
  85. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Extensions/ItemsExtension.swift +4 -4
  86. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/NodeProperty.swift +29 -21
  87. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift +16 -10
  88. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift +6 -6
  89. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +5 -5
  90. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +10 -8
  91. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueContainer.swift +25 -21
  92. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +23 -17
  93. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift +125 -108
  94. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift +22 -17
  95. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +110 -79
  96. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +22 -16
  97. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +19 -15
  98. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +22 -20
  99. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +22 -23
  100. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +242 -0
  101. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +30 -24
  102. package/{lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift → Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift} +93 -66
  103. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +23 -19
  104. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +139 -0
  105. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +170 -0
  106. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +95 -58
  107. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +42 -29
  108. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +108 -69
  109. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +155 -0
  110. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +51 -37
  111. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +54 -42
  112. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +65 -57
  113. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +84 -58
  114. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +138 -119
  115. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/AnimatorNode.swift +80 -79
  116. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/PathNode.swift +5 -3
  117. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/RenderNode.swift +22 -17
  118. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +27 -24
  119. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +34 -25
  120. package/Sources/Private/Model/Animation.swift +160 -0
  121. package/Sources/Private/Model/Assets/Asset.swift +43 -0
  122. package/{lottie-swift/src → Sources}/Private/Model/Assets/AssetLibrary.swift +40 -13
  123. package/Sources/Private/Model/Assets/ImageAsset.swift +112 -0
  124. package/{lottie-swift/src → Sources}/Private/Model/Assets/PrecompAsset.swift +20 -10
  125. package/Sources/Private/Model/DictionaryInitializable.swift +67 -0
  126. package/Sources/Private/Model/Extensions/Bundle.swift +34 -0
  127. package/{lottie-swift/src → Sources}/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +8 -4
  128. package/Sources/Private/Model/Keyframes/KeyframeData.swift +113 -0
  129. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +197 -0
  130. package/{lottie-swift/src → Sources}/Private/Model/Layers/ImageLayerModel.swift +21 -11
  131. package/Sources/Private/Model/Layers/LayerModel.swift +228 -0
  132. package/{lottie-swift/src → Sources}/Private/Model/Layers/PreCompLayerModel.swift +39 -22
  133. package/{lottie-swift/src → Sources}/Private/Model/Layers/ShapeLayerModel.swift +23 -12
  134. package/{lottie-swift/src → Sources}/Private/Model/Layers/SolidLayerModel.swift +31 -19
  135. package/{lottie-swift/src → Sources}/Private/Model/Layers/TextLayerModel.swift +33 -19
  136. package/Sources/Private/Model/Objects/DashPattern.swift +44 -0
  137. package/Sources/Private/Model/Objects/Marker.swift +33 -0
  138. package/Sources/Private/Model/Objects/Mask.swift +80 -0
  139. package/Sources/Private/Model/Objects/Transform.swift +179 -0
  140. package/Sources/Private/Model/ShapeItems/Ellipse.swift +75 -0
  141. package/Sources/Private/Model/ShapeItems/Fill.swift +74 -0
  142. package/Sources/Private/Model/ShapeItems/GradientFill.swift +124 -0
  143. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +186 -0
  144. package/Sources/Private/Model/ShapeItems/Group.swift +48 -0
  145. package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Merge.swift +29 -11
  146. package/Sources/Private/Model/ShapeItems/Rectangle.swift +73 -0
  147. package/Sources/Private/Model/ShapeItems/Repeater.swift +136 -0
  148. package/Sources/Private/Model/ShapeItems/Shape.swift +56 -0
  149. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +163 -0
  150. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +136 -0
  151. package/Sources/Private/Model/ShapeItems/Star.swift +132 -0
  152. package/Sources/Private/Model/ShapeItems/Stroke.swift +102 -0
  153. package/Sources/Private/Model/ShapeItems/Trim.swift +78 -0
  154. package/Sources/Private/Model/Text/Font.swift +61 -0
  155. package/{lottie-swift/src → Sources}/Private/Model/Text/Glyph.swift +63 -39
  156. package/Sources/Private/Model/Text/TextAnimator.swift +164 -0
  157. package/Sources/Private/Model/Text/TextDocument.swift +123 -0
  158. package/Sources/Private/RootAnimationLayer.swift +51 -0
  159. package/{lottie-swift/src → Sources}/Private/Utility/Debugging/AnimatorNodeDebugging.swift +7 -7
  160. package/{lottie-swift/src → Sources}/Private/Utility/Debugging/LayerDebugging.swift +72 -48
  161. package/Sources/Private/Utility/Debugging/TestHelpers.swift +10 -0
  162. package/{lottie-swift/src → Sources}/Private/Utility/Extensions/AnimationKeypathExtension.swift +69 -59
  163. package/Sources/Private/Utility/Extensions/BlendMode+Filter.swift +31 -0
  164. package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +22 -0
  165. package/{lottie-swift/src → Sources}/Private/Utility/Extensions/CGFloatExtensions.swift +70 -67
  166. package/Sources/Private/Utility/Extensions/DataExtension.swift +27 -0
  167. package/Sources/Private/Utility/Extensions/MathKit.swift +450 -0
  168. package/Sources/Private/Utility/Extensions/StringExtensions.swift +38 -0
  169. package/{lottie-swift/src → Sources}/Private/Utility/Helpers/AnimationContext.swift +42 -16
  170. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +134 -0
  171. package/{lottie-swift/src → Sources}/Private/Utility/Interpolatable/KeyframeExtensions.swift +13 -10
  172. package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +59 -0
  173. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/BezierPath.swift +229 -143
  174. package/Sources/Private/Utility/Primitives/CGPointExtension.swift +35 -0
  175. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/ColorExtension.swift +46 -14
  176. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/CompoundBezierPath.swift +58 -49
  177. package/Sources/Private/Utility/Primitives/CurveVertex.swift +184 -0
  178. package/Sources/Private/Utility/Primitives/PathElement.swift +75 -0
  179. package/Sources/Private/Utility/Primitives/UnitBezier.swift +115 -0
  180. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +341 -0
  181. package/Sources/Public/Animation/AnimationPublic.swift +266 -0
  182. package/Sources/Public/Animation/AnimationView.swift +1335 -0
  183. package/Sources/Public/Animation/AnimationViewInitializers.swift +109 -0
  184. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +22 -0
  185. package/{lottie-swift/src → Sources}/Public/AnimationCache/LRUAnimationCache.swift +22 -18
  186. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +49 -0
  187. package/Sources/Public/DynamicProperties/AnyValueProvider.swift +132 -0
  188. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +54 -36
  189. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +40 -36
  190. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +123 -0
  191. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +40 -35
  192. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +40 -35
  193. package/{lottie-swift/src → Sources}/Public/FontProvider/AnimationFontProvider.swift +15 -8
  194. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +21 -0
  195. package/Sources/Public/Keyframes/Interpolatable.swift +253 -0
  196. package/Sources/Public/Keyframes/Keyframe.swift +92 -0
  197. package/Sources/Public/Logging/LottieLogger.swift +137 -0
  198. package/Sources/Public/LottieConfiguration.swift +143 -0
  199. package/{lottie-swift/src → Sources}/Public/Primitives/AnimationTime.swift +1 -1
  200. package/{lottie-swift/src → Sources}/Public/Primitives/Color.swift +10 -6
  201. package/{lottie-swift/src → Sources}/Public/Primitives/Vectors.swift +13 -12
  202. package/Sources/Public/TextProvider/AnimationTextProvider.swift +53 -0
  203. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedButton.swift +42 -26
  204. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedControl.swift +100 -91
  205. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedSwitch.swift +128 -94
  206. package/{lottie-swift/src → Sources}/Public/iOS/AnimationSubview.swift +3 -3
  207. package/Sources/Public/iOS/AnimationViewBase.swift +78 -0
  208. package/{lottie-swift/src → Sources}/Public/iOS/BundleImageProvider.swift +36 -34
  209. package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +4 -0
  210. package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationView.swift +38 -29
  211. package/{lottie-swift/src → Sources}/Public/iOS/FilepathImageProvider.swift +24 -21
  212. package/{lottie-swift/src → Sources}/Public/iOS/UIColorExtension.swift +4 -4
  213. package/{lottie-swift/src/Public/MacOS/AnimationSubview.swift → Sources/Public/macOS/AnimationSubview.macOS.swift} +4 -5
  214. package/{lottie-swift/src/Public/MacOS/LottieView.swift → Sources/Public/macOS/AnimationViewBase.macOS.swift} +58 -50
  215. package/{lottie-swift/src/Public/MacOS/BundleImageProvider.swift → Sources/Public/macOS/BundleImageProvider.macOS.swift} +31 -32
  216. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +67 -0
  217. package/Tests/AnimationKeypathTests.swift +94 -0
  218. package/Tests/AutomaticEngineTests.swift +57 -0
  219. package/Tests/BundleTests.swift +25 -0
  220. package/Tests/DataURLTests.swift +64 -0
  221. package/Tests/ParsingTests.swift +43 -0
  222. package/Tests/PerformanceTests.swift +215 -0
  223. package/Tests/SnapshotConfiguration.swift +153 -0
  224. package/Tests/SnapshotTests.swift +265 -0
  225. package/Tests/Utils/Bundle+Module.swift +30 -0
  226. package/Tests/Utils/HardcodedFontProvider.swift +19 -0
  227. package/Tests/Utils/HardcodedImageProvider.swift +23 -0
  228. package/Tests/Utils/Snapshotting+presentationLayer.swift +47 -0
  229. package/Tests/ValueProvidersTests.swift +27 -0
  230. package/lottie-ios.podspec +11 -12
  231. package/package.json +1 -1
  232. package/script/test-carthage/Cartfile +1 -0
  233. package/script/test-carthage/Cartfile.resolved +1 -0
  234. package/script/test-carthage/CarthageTest/AppDelegate.swift +26 -0
  235. package/script/test-carthage/CarthageTest/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  236. package/script/test-carthage/CarthageTest/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  237. package/script/test-carthage/CarthageTest/Assets.xcassets/Contents.json +6 -0
  238. package/script/test-carthage/CarthageTest/Base.lproj/LaunchScreen.storyboard +25 -0
  239. package/script/test-carthage/CarthageTest/Base.lproj/Main.storyboard +24 -0
  240. package/script/test-carthage/CarthageTest/Info.plist +66 -0
  241. package/script/test-carthage/CarthageTest/SceneDelegate.swift +10 -0
  242. package/script/test-carthage/CarthageTest/ViewController.swift +15 -0
  243. package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
  244. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  245. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  246. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
  247. package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
  248. package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
  249. package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
  250. package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +532 -0
  251. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  252. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  253. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  254. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  255. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  256. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
  257. package/script/test-carthage/Mintfile +1 -0
  258. package/script/test-spm/LottieSPM.xcworkspace/contents.xcworkspacedata +7 -0
  259. package/script/test-spm/LottieSPM.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  260. package/script/test-spm/Mintfile +1 -0
  261. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  262. package/Lottie/Info.plist +0 -22
  263. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  264. package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/LottieLibraryMacOS.xcscheme +0 -80
  265. package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/xcschememanagement.plist +0 -57
  266. package/lottie-swift/Assets/.gitkeep +0 -0
  267. package/lottie-swift/src/Private/LayerContainers/Utility/LayerFontProvider.swift +0 -37
  268. package/lottie-swift/src/Private/LayerContainers/Utility/LayerTextProvider.swift +0 -36
  269. package/lottie-swift/src/Private/Model/Animation.swift +0 -107
  270. package/lottie-swift/src/Private/Model/Assets/Asset.swift +0 -27
  271. package/lottie-swift/src/Private/Model/Assets/ImageAsset.swift +0 -48
  272. package/lottie-swift/src/Private/Model/Keyframes/Keyframe.swift +0 -128
  273. package/lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift +0 -108
  274. package/lottie-swift/src/Private/Model/Layers/LayerModel.swift +0 -150
  275. package/lottie-swift/src/Private/Model/Objects/DashPattern.swift +0 -24
  276. package/lottie-swift/src/Private/Model/Objects/Marker.swift +0 -23
  277. package/lottie-swift/src/Private/Model/Objects/Mask.swift +0 -48
  278. package/lottie-swift/src/Private/Model/Objects/Transform.swift +0 -105
  279. package/lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift +0 -50
  280. package/lottie-swift/src/Private/Model/ShapeItems/FillI.swift +0 -49
  281. package/lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift +0 -86
  282. package/lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift +0 -125
  283. package/lottie-swift/src/Private/Model/ShapeItems/Group.swift +0 -32
  284. package/lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift +0 -50
  285. package/lottie-swift/src/Private/Model/ShapeItems/Repeater.swift +0 -80
  286. package/lottie-swift/src/Private/Model/ShapeItems/Shape.swift +0 -37
  287. package/lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift +0 -95
  288. package/lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift +0 -68
  289. package/lottie-swift/src/Private/Model/ShapeItems/Star.swift +0 -86
  290. package/lottie-swift/src/Private/Model/ShapeItems/Stroke.swift +0 -67
  291. package/lottie-swift/src/Private/Model/ShapeItems/Trim.swift +0 -53
  292. package/lottie-swift/src/Private/Model/Text/Font.swift +0 -35
  293. package/lottie-swift/src/Private/Model/Text/TextAnimator.swift +0 -99
  294. package/lottie-swift/src/Private/Model/Text/TextDocument.swift +0 -70
  295. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +0 -109
  296. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +0 -132
  297. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +0 -141
  298. package/lottie-swift/src/Private/Utility/Extensions/MathKit.swift +0 -539
  299. package/lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift +0 -32
  300. package/lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift +0 -18
  301. package/lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -170
  302. package/lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift +0 -177
  303. package/lottie-swift/src/Private/Utility/Primitives/PathElement.swift +0 -68
  304. package/lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift +0 -218
  305. package/lottie-swift/src/Public/Animation/AnimationPublic.swift +0 -196
  306. package/lottie-swift/src/Public/Animation/AnimationView.swift +0 -1006
  307. package/lottie-swift/src/Public/Animation/AnimationViewInitializers.swift +0 -83
  308. package/lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift +0 -24
  309. package/lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift +0 -46
  310. package/lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift +0 -29
  311. package/lottie-swift/src/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -114
  312. package/lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift +0 -23
  313. package/lottie-swift/src/Public/MacOS/FilepathImageProvider.swift +0 -67
  314. package/lottie-swift/src/Public/TextProvider/AnimationTextProvider.swift +0 -39
  315. package/lottie-swift/src/Public/iOS/LottieView.swift +0 -62
  316. 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
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -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
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "container:../..">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1 @@
1
+ thii/xcbeautify@0.10.2
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>