lottie-ios 3.4.0 → 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 (353) hide show
  1. package/.github/workflows/main.yml +10 -7
  2. package/.swift-version +1 -0
  3. package/Lottie.xcodeproj/project.pbxproj +5 -5
  4. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +81 -0
  5. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  6. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
  7. package/Package.resolved +88 -0
  8. package/Package.swift +5 -0
  9. package/README.md +5 -6
  10. package/Rakefile +13 -17
  11. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +7 -2
  12. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +191 -65
  13. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +79 -36
  14. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +19 -19
  15. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +18 -6
  16. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +6 -0
  17. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +9 -2
  18. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +77 -34
  19. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +15 -1
  20. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +0 -2
  21. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -2
  22. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +1 -2
  23. package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +1 -1
  24. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +0 -1
  25. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +0 -2
  26. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift +1 -4
  27. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +4 -7
  28. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +1 -2
  29. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +1 -1
  30. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +1 -1
  31. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +1 -1
  32. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +3 -3
  33. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +1 -1
  34. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +0 -1
  35. package/Sources/Private/Model/ShapeItems/Group.swift +6 -1
  36. package/Sources/Private/Model/Text/TextAnimator.swift +0 -1
  37. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +1 -2
  38. package/Sources/Private/Utility/Extensions/MathKit.swift +1 -2
  39. package/Sources/Private/Utility/Extensions/StringExtensions.swift +0 -1
  40. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -1
  41. package/Sources/Private/Utility/Primitives/BezierPath.swift +1 -2
  42. package/Sources/Private/Utility/Primitives/CurveVertex.swift +2 -4
  43. package/Sources/Public/Animation/AnimationPublic.swift +0 -3
  44. package/Sources/Public/Animation/AnimationView.swift +26 -6
  45. package/Sources/Public/Animation/AnimationViewInitializers.swift +13 -11
  46. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -2
  47. package/Sources/Public/FontProvider/AnimationFontProvider.swift +1 -1
  48. package/Sources/Public/Logging/LottieLogger.swift +15 -2
  49. package/Sources/Public/TextProvider/AnimationTextProvider.swift +1 -1
  50. package/Sources/Public/iOS/AnimatedButton.swift +10 -4
  51. package/Sources/Public/iOS/AnimatedControl.swift +3 -5
  52. package/Sources/Public/iOS/AnimatedSwitch.swift +9 -6
  53. package/Sources/Public/iOS/BundleImageProvider.swift +0 -1
  54. package/Sources/Public/iOS/FilepathImageProvider.swift +0 -1
  55. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +0 -1
  56. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +0 -2
  57. package/Tests/ParsingTests.swift +2 -1
  58. package/Tests/PerformanceTests.swift +9 -9
  59. package/lottie-ios.podspec +1 -2
  60. package/package.json +1 -1
  61. package/script/test-carthage/CarthageTest/AppDelegate.swift +6 -7
  62. package/script/test-carthage/CarthageTest/ViewController.swift +1 -1
  63. package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
  64. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  65. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  66. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
  67. package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
  68. package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
  69. package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
  70. package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +159 -5
  71. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  72. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
  73. package/Lottie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +0 -23
  74. package/Mintfile +0 -3
  75. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  76. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  77. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  78. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  79. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  80. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  81. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  82. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -1
  83. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  84. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  85. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  86. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  87. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  88. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  89. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  90. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  91. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  92. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  93. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  94. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  95. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  96. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  97. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  98. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  99. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  100. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  101. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  102. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  103. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  104. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  105. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  106. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  107. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  108. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  109. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  110. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  111. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -1
  112. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  113. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  114. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  115. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  116. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  117. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  118. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  119. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  120. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  121. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  122. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  123. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  124. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  125. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  126. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  127. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  128. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  129. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  130. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  131. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  132. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
  133. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  134. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  135. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  136. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  137. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  138. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  139. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  140. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  141. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  142. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  143. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  144. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  145. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  146. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  147. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  148. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  149. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  150. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  151. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  152. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  153. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  154. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  155. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  156. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  157. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  158. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  159. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  160. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  161. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -0
  162. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  163. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  164. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  165. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  166. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  167. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  168. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  169. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  170. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  171. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  172. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  173. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  174. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  175. package/Tests/Artifacts/LottieTests.xcresult/Info.plist +0 -29
  176. package/Tests/Samples/9squares_AlBoardman.json +0 -1
  177. package/Tests/Samples/Boat_Loader.json +0 -1
  178. package/Tests/Samples/HamburgerArrow.json +0 -1
  179. package/Tests/Samples/IconTransitions.json +0 -1
  180. package/Tests/Samples/Images/dog.png +0 -0
  181. package/Tests/Samples/Issues/issue_1403.json +0 -1
  182. package/Tests/Samples/Issues/issue_1407.json +0 -1
  183. package/Tests/Samples/Issues/issue_1488.json +0 -1
  184. package/Tests/Samples/Issues/issue_1505.json +0 -1
  185. package/Tests/Samples/Issues/issue_1628.json +0 -1
  186. package/Tests/Samples/Issues/pr_1536.json +0 -1
  187. package/Tests/Samples/Issues/pr_1563.json +0 -8439
  188. package/Tests/Samples/Issues/pr_1592.json +0 -5527
  189. package/Tests/Samples/Issues/pr_1599.json +0 -738
  190. package/Tests/Samples/Issues/pr_1604_1.json +0 -1
  191. package/Tests/Samples/Issues/pr_1604_2.json +0 -1
  192. package/Tests/Samples/LottieFiles/LICENSE.md +0 -14
  193. package/Tests/Samples/LottieFiles/bounce_strokes.json +0 -1
  194. package/Tests/Samples/LottieFiles/cactus.json +0 -1
  195. package/Tests/Samples/LottieFiles/dog_car_ride.json +0 -1
  196. package/Tests/Samples/LottieFiles/draft_icon.json +0 -1
  197. package/Tests/Samples/LottieFiles/gradient_1.json +0 -1
  198. package/Tests/Samples/LottieFiles/gradient_2.json +0 -1
  199. package/Tests/Samples/LottieFiles/gradient_pill.json +0 -1
  200. package/Tests/Samples/LottieFiles/gradient_shapes.json +0 -1
  201. package/Tests/Samples/LottieFiles/gradient_square.json +0 -1
  202. package/Tests/Samples/LottieFiles/growth.json +0 -1
  203. package/Tests/Samples/LottieFiles/infinity_loader.json +0 -1
  204. package/Tests/Samples/LottieFiles/loading_dots_1.json +0 -1
  205. package/Tests/Samples/LottieFiles/loading_dots_2.json +0 -1
  206. package/Tests/Samples/LottieFiles/loading_dots_3.json +0 -1
  207. package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +0 -1
  208. package/Tests/Samples/LottieFiles/settings_slider.json +0 -1
  209. package/Tests/Samples/LottieFiles/shop.json +0 -1
  210. package/Tests/Samples/LottieFiles/step_loader.json +0 -1
  211. package/Tests/Samples/LottieLogo1.json +0 -1
  212. package/Tests/Samples/LottieLogo1_masked.json +0 -1
  213. package/Tests/Samples/LottieLogo2.json +0 -1
  214. package/Tests/Samples/MotionCorpse_Jrcanest.json +0 -1
  215. package/Tests/Samples/Nonanimating/BasicLayers.json +0 -1
  216. package/Tests/Samples/Nonanimating/DisableNodesTest.json +0 -1
  217. package/Tests/Samples/Nonanimating/FirstText.json +0 -1
  218. package/Tests/Samples/Nonanimating/GeometryTransformTest.json +0 -1
  219. package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +0 -1
  220. package/Tests/Samples/Nonanimating/Text_Glyph.json +0 -1
  221. package/Tests/Samples/Nonanimating/Text_NoAnimation.json +0 -1
  222. package/Tests/Samples/Nonanimating/Text_NoGlyph.json +0 -1
  223. package/Tests/Samples/Nonanimating/Zoom.json +0 -1
  224. package/Tests/Samples/Nonanimating/_dog.json +0 -1
  225. package/Tests/Samples/Nonanimating/base64Test.json +0 -1
  226. package/Tests/Samples/Nonanimating/blend_mode_test.json +0 -1
  227. package/Tests/Samples/Nonanimating/keypathTest.json +0 -1
  228. package/Tests/Samples/Nonanimating/verifyLineHeight.json +0 -1
  229. package/Tests/Samples/PinJump.json +0 -1
  230. package/Tests/Samples/Private/BrokenLottieFiles/growth_man.json +0 -874
  231. package/Tests/Samples/Private/BrokenLottieFiles/rocket.json +0 -1
  232. package/Tests/Samples/Private/China_EmptyState_Itinerary.json +0 -1
  233. package/Tests/Samples/Private/LoaderHourglass.json +0 -12070
  234. package/Tests/Samples/Private/README.md +0 -7
  235. package/Tests/Samples/Private/Urgency/alarm_animated.json +0 -1
  236. package/Tests/Samples/Private/Urgency/diamond_animated.json +0 -1
  237. package/Tests/Samples/Private/Urgency/eye_animated.json +0 -1
  238. package/Tests/Samples/Private/Urgency/light_bulb_animated.json +0 -1
  239. package/Tests/Samples/Private/Urgency/light_bulb_static.json +0 -1
  240. package/Tests/Samples/Private/Urgency/piggy_bank_static.json +0 -1
  241. package/Tests/Samples/Private/Urgency/price_tag_legacy.json +0 -1
  242. package/Tests/Samples/Private/Urgency/rausch_alarm.json +0 -1
  243. package/Tests/Samples/Private/Urgency/rausch_alert.json +0 -1
  244. package/Tests/Samples/Private/Urgency/rausch_clock.json +0 -1
  245. package/Tests/Samples/Private/Urgency/rausch_diamond.json +0 -1
  246. package/Tests/Samples/Private/Urgency/rausch_money.json +0 -1
  247. package/Tests/Samples/Private/Urgency/rausch_piggy_bank.json +0 -1
  248. package/Tests/Samples/Private/Urgency/rausch_tag.json +0 -1
  249. package/Tests/Samples/Private/Urgency/red_envelope_animated.json +0 -1
  250. package/Tests/Samples/Private/Urgency/tag_animated.json +0 -1
  251. package/Tests/Samples/Private/Urgency/trophy_animated.json +0 -1
  252. package/Tests/Samples/Private/Urgency/wings_key_animated.json +0 -1
  253. package/Tests/Samples/Private/_flexible.json +0 -1
  254. package/Tests/Samples/Private/aircover.json +0 -1
  255. package/Tests/Samples/Private/belo_spin_rausch.json +0 -1
  256. package/Tests/Samples/Private/celebration.json +0 -2821
  257. package/Tests/Samples/Private/checkbox.json +0 -1
  258. package/Tests/Samples/Private/checkbox_small.json +0 -1
  259. package/Tests/Samples/Private/getting_your_trip_ready.json +0 -3540
  260. package/Tests/Samples/Private/gradient_afternoon.json +0 -1
  261. package/Tests/Samples/Private/gradient_brand.json +0 -1
  262. package/Tests/Samples/Private/gradient_evening.json +0 -1
  263. package/Tests/Samples/Private/gradient_morning.json +0 -1
  264. package/Tests/Samples/Private/issue_1467.json +0 -1
  265. package/Tests/Samples/Private/loading_dots.json +0 -1
  266. package/Tests/Samples/Private/loading_dots_small.json +0 -1
  267. package/Tests/Samples/Private/payment_loader.json +0 -1
  268. package/Tests/Samples/Private/radio_button.json +0 -1
  269. package/Tests/Samples/Private/selfie_intro.json +0 -1
  270. package/Tests/Samples/Private/stepper_add.json +0 -1
  271. package/Tests/Samples/Private/stepper_subtract.json +0 -1
  272. package/Tests/Samples/Private/switch.json +0 -1
  273. package/Tests/Samples/Private/thumb.json +0 -1
  274. package/Tests/Samples/Private/toggle_no.json +0 -1
  275. package/Tests/Samples/Private/toggle_yes.json +0 -1
  276. package/Tests/Samples/Private/user_error_black_and_white.json +0 -1
  277. package/Tests/Samples/Private/user_error_cut_off.json +0 -1
  278. package/Tests/Samples/Switch.json +0 -1
  279. package/Tests/Samples/Switch_States.json +0 -1
  280. package/Tests/Samples/TwitterHeart.json +0 -1
  281. package/Tests/Samples/TwitterHeartButton.json +0 -1
  282. package/Tests/Samples/TypeFace/A.json +0 -1
  283. package/Tests/Samples/TypeFace/Apostrophe.json +0 -1
  284. package/Tests/Samples/TypeFace/B.json +0 -1
  285. package/Tests/Samples/TypeFace/BlinkingCursor.json +0 -1
  286. package/Tests/Samples/TypeFace/C.json +0 -1
  287. package/Tests/Samples/TypeFace/Colon.json +0 -1
  288. package/Tests/Samples/TypeFace/Comma.json +0 -1
  289. package/Tests/Samples/TypeFace/D.json +0 -1
  290. package/Tests/Samples/TypeFace/E.json +0 -1
  291. package/Tests/Samples/TypeFace/F.json +0 -1
  292. package/Tests/Samples/TypeFace/G.json +0 -1
  293. package/Tests/Samples/TypeFace/H.json +0 -1
  294. package/Tests/Samples/TypeFace/I.json +0 -1
  295. package/Tests/Samples/TypeFace/J.json +0 -1
  296. package/Tests/Samples/TypeFace/K.json +0 -1
  297. package/Tests/Samples/TypeFace/L.json +0 -1
  298. package/Tests/Samples/TypeFace/M.json +0 -1
  299. package/Tests/Samples/TypeFace/N.json +0 -1
  300. package/Tests/Samples/TypeFace/O.json +0 -1
  301. package/Tests/Samples/TypeFace/P.json +0 -1
  302. package/Tests/Samples/TypeFace/Q.json +0 -1
  303. package/Tests/Samples/TypeFace/R.json +0 -1
  304. package/Tests/Samples/TypeFace/S.json +0 -1
  305. package/Tests/Samples/TypeFace/T.json +0 -1
  306. package/Tests/Samples/TypeFace/U.json +0 -1
  307. package/Tests/Samples/TypeFace/V.json +0 -1
  308. package/Tests/Samples/TypeFace/W.json +0 -1
  309. package/Tests/Samples/TypeFace/X.json +0 -1
  310. package/Tests/Samples/TypeFace/Y.json +0 -1
  311. package/Tests/Samples/TypeFace/Z.json +0 -1
  312. package/Tests/Samples/Watermelon.json +0 -1
  313. package/Tests/Samples/setValueTest.json +0 -1
  314. package/Tests/Samples/timeremap.json +0 -1
  315. package/Tests/Samples/vcTransition1.json +0 -1
  316. package/Tests/Samples/vcTransition2.json +0 -1
  317. package/script/lint/airbnb.swiftformat +0 -68
  318. package/script/lint/swiftlint.yml +0 -38
  319. package/script/test-carthage/Carthage/Build/.lottie-ios.version +0 -19
  320. package/script/test-carthage/Carthage/Build/Lottie.xcframework/Info.plist +0 -46
  321. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/BCSymbolMaps/BF971162-BE99-3507-B5B3-11947DC6B176.bcsymbolmap +0 -14778
  322. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Headers/Lottie-Swift.h +0 -673
  323. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Info.plist +0 -0
  324. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Lottie +0 -0
  325. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  326. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
  327. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  328. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  329. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/module.modulemap +0 -4
  330. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +0 -20
  331. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  332. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Headers/Lottie-Swift.h +0 -1352
  333. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Info.plist +0 -0
  334. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Lottie +0 -0
  335. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  336. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64.swiftsourceinfo +0 -0
  337. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  338. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64.swiftsourceinfo +0 -0
  339. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  340. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftmodule +0 -0
  341. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  342. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  343. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  344. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftmodule +0 -0
  345. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftdoc +0 -0
  346. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftmodule +0 -0
  347. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/module.modulemap +0 -4
  348. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/_CodeSignature/CodeResources +0 -256
  349. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +0 -20
  350. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  351. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  352. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
  353. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
@@ -9,7 +9,10 @@ on:
9
9
  jobs:
10
10
  build-package:
11
11
  name: "Build Package"
12
- runs-on: macos-latest
12
+ # The macos-11 image includes Xcode 12 releases, but the macos-12
13
+ # image only includes Xcode 13 releases. We still need to use macos-11
14
+ # on this job to build using Swift 5.3 and Swift 5.4.
15
+ runs-on: macos-11
13
16
  strategy:
14
17
  matrix:
15
18
  xcode:
@@ -26,7 +29,7 @@ jobs:
26
29
 
27
30
  build-example:
28
31
  name: "Build Example App"
29
- runs-on: macos-latest
32
+ runs-on: macos-12
30
33
  steps:
31
34
  - uses: actions/checkout@v2
32
35
  - uses: ./.github/actions/setup
@@ -35,7 +38,7 @@ jobs:
35
38
 
36
39
  test-package:
37
40
  name: "Test Package"
38
- runs-on: macos-latest
41
+ runs-on: macos-12
39
42
  steps:
40
43
  - uses: actions/checkout@v2
41
44
  - uses: ./.github/actions/setup
@@ -53,7 +56,7 @@ jobs:
53
56
 
54
57
  cocoapod:
55
58
  name: "Lint CocoaPods podspec"
56
- runs-on: macos-latest
59
+ runs-on: macos-12
57
60
  steps:
58
61
  - uses: actions/checkout@v2
59
62
  - uses: ./.github/actions/setup
@@ -64,7 +67,7 @@ jobs:
64
67
 
65
68
  spm:
66
69
  name: "Test Swift Package Manager support"
67
- runs-on: macos-latest
70
+ runs-on: macos-12
68
71
  steps:
69
72
  - uses: actions/checkout@v2
70
73
  - uses: ./.github/actions/setup
@@ -75,7 +78,7 @@ jobs:
75
78
 
76
79
  carthage:
77
80
  name: "Test Carthage support"
78
- runs-on: macos-latest
81
+ runs-on: macos-12
79
82
  steps:
80
83
  - uses: actions/checkout@v2
81
84
  - uses: ./.github/actions/setup
@@ -87,7 +90,7 @@ jobs:
87
90
 
88
91
  swiftlint:
89
92
  name: "Lint Swift"
90
- runs-on: macos-latest
93
+ runs-on: macos-12
91
94
  steps:
92
95
  - uses: actions/checkout@v2
93
96
  - uses: ./.github/actions/setup
package/.swift-version ADDED
@@ -0,0 +1 @@
1
+ 5.3
@@ -741,7 +741,7 @@
741
741
  2E9C95D02822F43100677516 /* KeyframeExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyframeExtensions.swift; sourceTree = "<group>"; };
742
742
  2E9C95D22822F43100677516 /* AnimationContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationContext.swift; sourceTree = "<group>"; };
743
743
  2EAF59A627A076BC00E00531 /* Bundle+Module.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Module.swift"; sourceTree = "<group>"; };
744
- 2EAF59AD27A0787B00E00531 /* Lottie_macOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie_macOS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
744
+ 2EAF59AD27A0787B00E00531 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
745
745
  2EAF59B927A078E400E00531 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
746
746
  2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BundleImageProvider.macOS.swift; sourceTree = "<group>"; };
747
747
  2EAF59C427A0798700E00531 /* AnimationViewBase.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationViewBase.macOS.swift; sourceTree = "<group>"; };
@@ -840,7 +840,7 @@
840
840
  children = (
841
841
  2E80409A27A0725D006E74CB /* Lottie.framework */,
842
842
  2E8040AC27A072B8006E74CB /* LottieTests.xctest */,
843
- 2EAF59AD27A0787B00E00531 /* Lottie_macOS.framework */,
843
+ 2EAF59AD27A0787B00E00531 /* Lottie.framework */,
844
844
  2EAF59B927A078E400E00531 /* Lottie.framework */,
845
845
  );
846
846
  name = Products;
@@ -1564,7 +1564,7 @@
1564
1564
  );
1565
1565
  name = "Lottie-macOS";
1566
1566
  productName = "Lottie-macOS";
1567
- productReference = 2EAF59AD27A0787B00E00531 /* Lottie_macOS.framework */;
1567
+ productReference = 2EAF59AD27A0787B00E00531 /* Lottie.framework */;
1568
1568
  productType = "com.apple.product-type.framework";
1569
1569
  };
1570
1570
  2EAF59B827A078E400E00531 /* Lottie-tvOS */ = {
@@ -2509,7 +2509,7 @@
2509
2509
  MACOSX_DEPLOYMENT_TARGET = 10.10;
2510
2510
  MARKETING_VERSION = 1.0;
2511
2511
  PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.Lottie;
2512
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
2512
+ PRODUCT_NAME = Lottie;
2513
2513
  SDKROOT = macosx;
2514
2514
  SKIP_INSTALL = YES;
2515
2515
  SWIFT_EMIT_LOC_STRINGS = YES;
@@ -2539,7 +2539,7 @@
2539
2539
  MACOSX_DEPLOYMENT_TARGET = 10.10;
2540
2540
  MARKETING_VERSION = 1.0;
2541
2541
  PRODUCT_BUNDLE_IDENTIFIER = com.airbnb.Lottie;
2542
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
2542
+ PRODUCT_NAME = Lottie;
2543
2543
  SDKROOT = macosx;
2544
2544
  SKIP_INSTALL = YES;
2545
2545
  SWIFT_EMIT_LOC_STRINGS = YES;
@@ -19,6 +19,33 @@
19
19
  "version": "0.7.0"
20
20
  }
21
21
  },
22
+ {
23
+ "package": "SourceKitten",
24
+ "repositoryURL": "https://github.com/jpsim/SourceKitten.git",
25
+ "state": {
26
+ "branch": null,
27
+ "revision": "817dfa6f2e09b0476f3a6c9dbc035991f02f0241",
28
+ "version": "0.32.0"
29
+ }
30
+ },
31
+ {
32
+ "package": "AirbnbSwift",
33
+ "repositoryURL": "https://github.com/airbnb/swift",
34
+ "state": {
35
+ "branch": "master",
36
+ "revision": "b844956fd69f05e550038469a5d498462176f87a",
37
+ "version": null
38
+ }
39
+ },
40
+ {
41
+ "package": "swift-argument-parser",
42
+ "repositoryURL": "https://github.com/apple/swift-argument-parser.git",
43
+ "state": {
44
+ "branch": null,
45
+ "revision": "e394bf350e38cb100b6bc4172834770ede1b7232",
46
+ "version": "1.0.3"
47
+ }
48
+ },
22
49
  {
23
50
  "package": "swift-snapshot-testing",
24
51
  "repositoryURL": "https://github.com/pointfreeco/swift-snapshot-testing.git",
@@ -27,6 +54,60 @@
27
54
  "revision": "88f6e2c0afe04221fcfb1601a2ecaad83115a05f",
28
55
  "version": null
29
56
  }
57
+ },
58
+ {
59
+ "package": "SwiftSyntax",
60
+ "repositoryURL": "https://github.com/apple/swift-syntax.git",
61
+ "state": {
62
+ "branch": null,
63
+ "revision": "0b6c22b97f8e9320bca62e82cdbee601cf37ad3f",
64
+ "version": "0.50600.1"
65
+ }
66
+ },
67
+ {
68
+ "package": "SwiftFormat",
69
+ "repositoryURL": "https://github.com/calda/SwiftFormat",
70
+ "state": {
71
+ "branch": null,
72
+ "revision": "2a9ed335450d3b3f66b2699d65124b9089195f5d",
73
+ "version": "0.49.11-beta-2"
74
+ }
75
+ },
76
+ {
77
+ "package": "SwiftLint",
78
+ "repositoryURL": "https://github.com/realm/SwiftLint",
79
+ "state": {
80
+ "branch": "e497f1f",
81
+ "revision": "e497f1f5b161af96ba439049d21970c6204d06c6",
82
+ "version": null
83
+ }
84
+ },
85
+ {
86
+ "package": "SwiftyTextTable",
87
+ "repositoryURL": "https://github.com/scottrhoyt/SwiftyTextTable.git",
88
+ "state": {
89
+ "branch": null,
90
+ "revision": "c6df6cf533d120716bff38f8ff9885e1ce2a4ac3",
91
+ "version": "0.9.0"
92
+ }
93
+ },
94
+ {
95
+ "package": "SWXMLHash",
96
+ "repositoryURL": "https://github.com/drmohundro/SWXMLHash.git",
97
+ "state": {
98
+ "branch": null,
99
+ "revision": "6469881a3f30417c5bb02404ea4b69207f297592",
100
+ "version": "6.0.0"
101
+ }
102
+ },
103
+ {
104
+ "package": "Yams",
105
+ "repositoryURL": "https://github.com/jpsim/Yams.git",
106
+ "state": {
107
+ "branch": null,
108
+ "revision": "9ff1cc9327586db4e0c8f46f064b6a82ec1566fa",
109
+ "version": "4.0.6"
110
+ }
30
111
  }
31
112
  ]
32
113
  },
@@ -0,0 +1,30 @@
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>SWXMLHashPlayground (Playground) 1.xcscheme</key>
8
+ <dict>
9
+ <key>isShown</key>
10
+ <false/>
11
+ <key>orderHint</key>
12
+ <integer>8</integer>
13
+ </dict>
14
+ <key>SWXMLHashPlayground (Playground) 2.xcscheme</key>
15
+ <dict>
16
+ <key>isShown</key>
17
+ <false/>
18
+ <key>orderHint</key>
19
+ <integer>9</integer>
20
+ </dict>
21
+ <key>SWXMLHashPlayground (Playground).xcscheme</key>
22
+ <dict>
23
+ <key>isShown</key>
24
+ <false/>
25
+ <key>orderHint</key>
26
+ <integer>4</integer>
27
+ </dict>
28
+ </dict>
29
+ </dict>
30
+ </plist>
@@ -0,0 +1,88 @@
1
+ {
2
+ "object": {
3
+ "pins": [
4
+ {
5
+ "package": "SourceKitten",
6
+ "repositoryURL": "https://github.com/jpsim/SourceKitten.git",
7
+ "state": {
8
+ "branch": null,
9
+ "revision": "817dfa6f2e09b0476f3a6c9dbc035991f02f0241",
10
+ "version": "0.32.0"
11
+ }
12
+ },
13
+ {
14
+ "package": "AirbnbSwift",
15
+ "repositoryURL": "https://github.com/airbnb/swift",
16
+ "state": {
17
+ "branch": "master",
18
+ "revision": "b844956fd69f05e550038469a5d498462176f87a",
19
+ "version": null
20
+ }
21
+ },
22
+ {
23
+ "package": "swift-argument-parser",
24
+ "repositoryURL": "https://github.com/apple/swift-argument-parser.git",
25
+ "state": {
26
+ "branch": null,
27
+ "revision": "e394bf350e38cb100b6bc4172834770ede1b7232",
28
+ "version": "1.0.3"
29
+ }
30
+ },
31
+ {
32
+ "package": "SwiftSyntax",
33
+ "repositoryURL": "https://github.com/apple/swift-syntax.git",
34
+ "state": {
35
+ "branch": null,
36
+ "revision": "0b6c22b97f8e9320bca62e82cdbee601cf37ad3f",
37
+ "version": "0.50600.1"
38
+ }
39
+ },
40
+ {
41
+ "package": "SwiftFormat",
42
+ "repositoryURL": "https://github.com/calda/SwiftFormat",
43
+ "state": {
44
+ "branch": null,
45
+ "revision": "2a9ed335450d3b3f66b2699d65124b9089195f5d",
46
+ "version": "0.49.11-beta-2"
47
+ }
48
+ },
49
+ {
50
+ "package": "SwiftLint",
51
+ "repositoryURL": "https://github.com/realm/SwiftLint",
52
+ "state": {
53
+ "branch": "e497f1f",
54
+ "revision": "e497f1f5b161af96ba439049d21970c6204d06c6",
55
+ "version": null
56
+ }
57
+ },
58
+ {
59
+ "package": "SwiftyTextTable",
60
+ "repositoryURL": "https://github.com/scottrhoyt/SwiftyTextTable.git",
61
+ "state": {
62
+ "branch": null,
63
+ "revision": "c6df6cf533d120716bff38f8ff9885e1ce2a4ac3",
64
+ "version": "0.9.0"
65
+ }
66
+ },
67
+ {
68
+ "package": "SWXMLHash",
69
+ "repositoryURL": "https://github.com/drmohundro/SWXMLHash.git",
70
+ "state": {
71
+ "branch": null,
72
+ "revision": "6469881a3f30417c5bb02404ea4b69207f297592",
73
+ "version": "6.0.0"
74
+ }
75
+ },
76
+ {
77
+ "package": "Yams",
78
+ "repositoryURL": "https://github.com/jpsim/Yams.git",
79
+ "state": {
80
+ "branch": null,
81
+ "revision": "9ff1cc9327586db4e0c8f46f064b6a82ec1566fa",
82
+ "version": "4.0.6"
83
+ }
84
+ }
85
+ ]
86
+ },
87
+ "version": 1
88
+ }
package/Package.swift CHANGED
@@ -6,3 +6,8 @@ let package = Package(
6
6
  platforms: [.iOS("11.0"), .macOS("10.10"), .tvOS("11.0")],
7
7
  products: [.library(name: "Lottie", targets: ["Lottie"])],
8
8
  targets: [.target(name: "Lottie", path: "Sources")])
9
+
10
+ #if swift(>=5.6)
11
+ // Add the Airbnb Swift formatting plugin if possible
12
+ package.dependencies.append(.package(url: "https://github.com/airbnb/swift", .branch("master")))
13
+ #endif
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # Lottie for iOS
2
- [![Version](https://img.shields.io/cocoapods/v/lottie-ios.svg?style=flat)](https://cocoapods.org/pods/lottie-ios) [![License](https://img.shields.io/cocoapods/l/lottie-ios.svg?style=flat)](https://cocoapods.org/pods/lottie-ios) [![Platform](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fairbnb%2Flottie-ios%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/airbnb/lottie-ios) [![Swift Versions](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fairbnb%2Flottie-ios%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/airbnb/lottie-ios)
2
+ [![Version](https://img.shields.io/cocoapods/v/lottie-ios.svg?style=flat)](https://cocoapods.org/pods/lottie-ios) [![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![SwiftPM](https://img.shields.io/badge/SPM-supported-DE5C43.svg?style=flat)](https://swift.org/package-manager/) [![License](https://img.shields.io/cocoapods/l/lottie-ios.svg?style=flat)](https://cocoapods.org/pods/lottie-ios) [![Platform](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fairbnb%2Flottie-ios%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/airbnb/lottie-ios) [![Swift Versions](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fairbnb%2Flottie-ios%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/airbnb/lottie-ios)
3
3
 
4
4
  **View documentation, FAQ, help, examples, and more at [airbnb.io/lottie](http://airbnb.io/lottie/)**
5
5
 
6
- Lottie is a cross-platform library for iOS, macOS, tvOS, [Android](https://github.com/airbnb/lottie), and [Web](https://github.com/airbnb/lottie-web) that natively renders vector based animations and art in realtime with minimal code.
6
+ Lottie is a cross-platform library for iOS, macOS, tvOS, [Android](https://github.com/airbnb/lottie), and [Web](https://github.com/airbnb/lottie-web) that natively renders vector-based animations and art in realtime with minimal code.
7
7
 
8
8
  Lottie loads and renders animations and vectors exported in the bodymovin JSON format. Bodymovin JSON can be created and exported from After Effects with [bodymovin](https://github.com/bodymovin/bodymovin), Sketch with [Lottie Sketch Export](https://github.com/buba447/Lottie-Sketch-Export), and from [Haiku](https://www.haiku.ai).
9
9
 
@@ -11,7 +11,7 @@ Designers can create **and ship** beautiful animations without an engineer pains
11
11
  Since the animation is backed by JSON they are extremely small in size but can be large in complexity!
12
12
  Animations can be played, resized, looped, sped up, slowed down, reversed, and even interactively scrubbed.
13
13
  Lottie can play or loop just a portion of the animation as well, the possibilities are endless!
14
- Animations can even be ***changed at runtime*** in various ways! Change the color, position or any keyframable value!
14
+ Animations can even be ***changed at runtime*** in various ways! Change the color, position, or any keyframable value!
15
15
 
16
16
  Here is just a small sampling of the power of Lottie
17
17
 
@@ -25,7 +25,7 @@ Here is just a small sampling of the power of Lottie
25
25
  ![Abcs](_Gifs/Examples4.gif)
26
26
 
27
27
  ## Installing Lottie
28
- Lottie supports [Swift Package Manager](https://www.swift.org/package-manager/), [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage) (Both dynamic and static).
28
+ Lottie supports [Swift Package Manager](https://www.swift.org/package-manager/), [CocoaPods](https://cocoapods.org/), and [Carthage](https://github.com/Carthage/Carthage) (Both dynamic and static).
29
29
 
30
30
  ### Github Repo
31
31
 
@@ -79,12 +79,11 @@ All pull requests with new features or bug fixes that affect how animations rend
79
79
  - To add a new sample animation to the snapshot testing suite, you can add the `.json` file to `Tests/Samples`. Re-run the snapshot tests to generate the new snapshot image files.
80
80
  - To update existing snapshots after making changes, you can set `isRecording = true` in `SnapshotTests.swift` and then re-run the snapshot tests.
81
81
 
82
- The project also include several helpful commands defined in our [Rakefile](https://github.com/airbnb/lottie-ios/blob/master/Rakefile). To use these, you need to install [Bundler](https://bundler.io/) and [Mint](https://github.com/yonaskolb/Mint):
82
+ The project also includes several helpful commands defined in our [Rakefile](https://github.com/airbnb/lottie-ios/blob/master/Rakefile). To use these, you need to install [Bundler](https://bundler.io/):
83
83
 
84
84
  ```bash
85
85
  $ sudo gem install bundle
86
86
  $ bundle install
87
- $ brew install mint
88
87
  ```
89
88
 
90
89
  For example, all Swift code should be formatted according to the [Airbnb Swift Style Guide](https://github.com/airbnb/swift). After making changes, you can reformat the code automatically using [SwiftFormat](https://github.com/nicklockwood/SwiftFormat) and [SwiftLint](https://github.com/realm/SwiftLint) by running `bundle exec rake format:swift`. Other helpful commands include:
package/Rakefile CHANGED
@@ -75,6 +75,7 @@ namespace :test do
75
75
 
76
76
  # Build a test app that imports and uses the LottieCarthage framework
77
77
  xcodebuild('build -scheme CarthageTest -destination "platform=iOS Simulator,name=iPhone 8"')
78
+ xcodebuild('build -scheme CarthageTest-macOS')
78
79
  end
79
80
  end
80
81
 
@@ -91,19 +92,8 @@ end
91
92
 
92
93
  namespace :lint do
93
94
  desc 'Lints swift files'
94
- task swift: ['swift:swiftlint', 'swift:swiftformat']
95
-
96
- desc 'Lints swift files'
97
- namespace :swift do
98
- desc 'Lints swift files using SwiftLint'
99
- task :swiftlint do
100
- sh 'mint run SwiftLint lint Sources Tests Example Package.swift --config script/lint/swiftlint.yml --strict'
101
- end
102
-
103
- desc 'Lints swift files using SwiftLint'
104
- task :swiftformat do
105
- sh 'mint run SwiftFormat Sources Tests Example Package.swift --config script/lint/airbnb.swiftformat --lint'
106
- end
95
+ task :swift do
96
+ sh 'swift package --allow-writing-to-package-directory format --lint'
107
97
  end
108
98
 
109
99
  desc 'Lints the CocoaPods podspec'
@@ -113,13 +103,19 @@ namespace :lint do
113
103
  end
114
104
 
115
105
  namespace :format do
116
- desc 'Runs SwiftFormat'
106
+ desc 'Formats swift files'
117
107
  task :swift do
118
- sh 'mint run SwiftLint autocorrect Sources Tests Example Package.swift --config script/lint/swiftlint.yml'
119
- sh 'mint run SwiftFormat Sources Tests Example Package.swift --config script/lint/airbnb.swiftformat'
108
+ sh 'swift package --allow-writing-to-package-directory format'
120
109
  end
121
110
  end
122
111
 
123
112
  def xcodebuild(command)
124
- sh "set -o pipefail && xcodebuild #{command} | mint run xcbeautify"
113
+ # Check if the mint tool is installed -- if so, pipe the xcodebuild output through xcbeautify
114
+ `which mint`
115
+
116
+ if $?.success?
117
+ sh "set -o pipefail && xcodebuild #{command} | mint run thii/xcbeautify@0.10.2"
118
+ else
119
+ sh "xcodebuild #{command}"
120
+ end
125
121
  end
@@ -5,10 +5,12 @@ import QuartzCore
5
5
 
6
6
  extension CAAnimation {
7
7
  /// Creates a `CAAnimation` that wraps this animation,
8
- /// applying timing-related configuration from the given `LayerAnimationContext`
8
+ /// applying timing-related configuration from the given `LayerAnimationContext`.
9
+ /// - This animation should start at the beginning of the animation and
10
+ /// last the entire duration of the animation. It will be trimmed and retimed
11
+ /// to match the current playback state / looping configuration of the animation view.
9
12
  @nonobjc
10
13
  func timed(with context: LayerAnimationContext, for layer: CALayer) -> CAAnimation {
11
-
12
14
  // The base animation always has the duration of the full animation,
13
15
  // since that's the time space where keyframing and interpolating happens.
14
16
  // So we start with a simple animation timeline from 0% to 100%:
@@ -69,6 +71,9 @@ extension CAAnimation {
69
71
 
70
72
  extension CALayer {
71
73
  /// Adds the given animation to this layer, timed with the given timing configuration
74
+ /// - The given animation should start at the beginning of the animation and
75
+ /// last the entire duration of the animation. It will be trimmed and retimed
76
+ /// to match the current playback state / looping configuration of the animation view.
72
77
  @nonobjc
73
78
  func add(_ animation: CAPropertyAnimation, timedWith context: LayerAnimationContext) {
74
79
  add(animation.timed(with: context, for: self), forKey: animation.keyPath)