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
@@ -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
+ }
@@ -7,6 +7,12 @@
7
7
  objects = {
8
8
 
9
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, ); }; };
10
16
  2E6DBE0327723E0900EBD89E /* Lottie.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */; };
11
17
  2E6DBE0427723E0900EBD89E /* Lottie.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
12
18
  2ED64E5F2770FAB2006AA0F3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED64E5E2770FAB2006AA0F3 /* AppDelegate.swift */; };
@@ -18,6 +24,17 @@
18
24
  /* End PBXBuildFile section */
19
25
 
20
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
+ };
21
38
  2E6DBE0527723E0900EBD89E /* Embed Frameworks */ = {
22
39
  isa = PBXCopyFilesBuildPhase;
23
40
  buildActionMask = 2147483647;
@@ -32,6 +49,12 @@
32
49
  /* End PBXCopyFilesBuildPhase section */
33
50
 
34
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>"; };
35
58
  2ED64E5B2770FAB2006AA0F3 /* CarthageTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CarthageTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
36
59
  2ED64E5E2770FAB2006AA0F3 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
37
60
  2ED64E602770FAB2006AA0F3 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
@@ -40,12 +63,18 @@
40
63
  2ED64E672770FAB3006AA0F3 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
41
64
  2ED64E6A2770FAB3006AA0F3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
42
65
  2ED64E6C2770FAB3006AA0F3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
43
- 2ED64E732770FABF006AA0F3 /* Lottie.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Lottie.xcframework; path = ../Carthage/Build/Lottie.xcframework; sourceTree = "<group>"; };
44
66
  2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Lottie.xcframework; path = Carthage/Build/Lottie.xcframework; sourceTree = "<group>"; };
45
- 2ED64E7E2770FD58006AA0F3 /* LottieCarthage.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = LottieCarthage.xcframework; path = Carthage/Build/LottieCarthage.xcframework; sourceTree = "<group>"; };
46
67
  /* End PBXFileReference section */
47
68
 
48
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
+ };
49
78
  2ED64E582770FAB2006AA0F3 /* Frameworks */ = {
50
79
  isa = PBXFrameworksBuildPhase;
51
80
  buildActionMask = 2147483647;
@@ -57,10 +86,23 @@
57
86
  /* End PBXFrameworksBuildPhase section */
58
87
 
59
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
+ };
60
101
  2ED64E522770FAB2006AA0F3 = {
61
102
  isa = PBXGroup;
62
103
  children = (
63
104
  2ED64E5D2770FAB2006AA0F3 /* CarthageTest */,
105
+ 08B627772878AE70004526F1 /* CarthageTest-macOS */,
64
106
  2ED64E5C2770FAB2006AA0F3 /* Products */,
65
107
  2ED64E722770FABF006AA0F3 /* Frameworks */,
66
108
  );
@@ -70,6 +112,7 @@
70
112
  isa = PBXGroup;
71
113
  children = (
72
114
  2ED64E5B2770FAB2006AA0F3 /* CarthageTest.app */,
115
+ 08B627762878AE70004526F1 /* CarthageTest-macOS.app */,
73
116
  );
74
117
  name = Products;
75
118
  sourceTree = "<group>";
@@ -91,9 +134,7 @@
91
134
  2ED64E722770FABF006AA0F3 /* Frameworks */ = {
92
135
  isa = PBXGroup;
93
136
  children = (
94
- 2ED64E7E2770FD58006AA0F3 /* LottieCarthage.xcframework */,
95
137
  2ED64E792770FBE1006AA0F3 /* Lottie.xcframework */,
96
- 2ED64E732770FABF006AA0F3 /* Lottie.xcframework */,
97
138
  );
98
139
  name = Frameworks;
99
140
  sourceTree = "<group>";
@@ -101,6 +142,24 @@
101
142
  /* End PBXGroup section */
102
143
 
103
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
+ };
104
163
  2ED64E5A2770FAB2006AA0F3 /* CarthageTest */ = {
105
164
  isa = PBXNativeTarget;
106
165
  buildConfigurationList = 2ED64E6F2770FAB3006AA0F3 /* Build configuration list for PBXNativeTarget "CarthageTest" */;
@@ -125,9 +184,12 @@
125
184
  2ED64E532770FAB2006AA0F3 /* Project object */ = {
126
185
  isa = PBXProject;
127
186
  attributes = {
128
- LastSwiftUpdateCheck = 1250;
187
+ LastSwiftUpdateCheck = 1330;
129
188
  LastUpgradeCheck = 1250;
130
189
  TargetAttributes = {
190
+ 08B627752878AE70004526F1 = {
191
+ CreatedOnToolsVersion = 13.3.1;
192
+ };
131
193
  2ED64E5A2770FAB2006AA0F3 = {
132
194
  CreatedOnToolsVersion = 12.5.1;
133
195
  };
@@ -147,11 +209,21 @@
147
209
  projectRoot = "";
148
210
  targets = (
149
211
  2ED64E5A2770FAB2006AA0F3 /* CarthageTest */,
212
+ 08B627752878AE70004526F1 /* CarthageTest-macOS */,
150
213
  );
151
214
  };
152
215
  /* End PBXProject section */
153
216
 
154
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
+ };
155
227
  2ED64E592770FAB2006AA0F3 /* Resources */ = {
156
228
  isa = PBXResourcesBuildPhase;
157
229
  buildActionMask = 2147483647;
@@ -165,6 +237,15 @@
165
237
  /* End PBXResourcesBuildPhase section */
166
238
 
167
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
+ };
168
249
  2ED64E572770FAB2006AA0F3 /* Sources */ = {
169
250
  isa = PBXSourcesBuildPhase;
170
251
  buildActionMask = 2147483647;
@@ -178,6 +259,14 @@
178
259
  /* End PBXSourcesBuildPhase section */
179
260
 
180
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
+ };
181
270
  2ED64E642770FAB2006AA0F3 /* Main.storyboard */ = {
182
271
  isa = PBXVariantGroup;
183
272
  children = (
@@ -197,6 +286,62 @@
197
286
  /* End PBXVariantGroup section */
198
287
 
199
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
+ };
200
345
  2ED64E6D2770FAB3006AA0F3 /* Debug */ = {
201
346
  isa = XCBuildConfiguration;
202
347
  buildSettings = {
@@ -354,6 +499,15 @@
354
499
  /* End XCBuildConfiguration section */
355
500
 
356
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
+ };
357
511
  2ED64E562770FAB2006AA0F3 /* Build configuration list for PBXProject "CarthageTest" */ = {
358
512
  isa = XCConfigurationList;
359
513
  buildConfigurations = (
@@ -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>
@@ -1,23 +0,0 @@
1
- {
2
- "pins" : [
3
- {
4
- "identity" : "difference",
5
- "kind" : "remoteSourceControl",
6
- "location" : "https://github.com/krzysztofzablocki/Difference",
7
- "state" : {
8
- "revision" : "02fe1111edc8318c4f8a0da96336fcbcc201f38b",
9
- "version" : "1.0.1"
10
- }
11
- },
12
- {
13
- "identity" : "swift-snapshot-testing",
14
- "kind" : "remoteSourceControl",
15
- "location" : "https://github.com/pointfreeco/swift-snapshot-testing.git",
16
- "state" : {
17
- "branch" : "main",
18
- "revision" : "88f6e2c0afe04221fcfb1601a2ecaad83115a05f"
19
- }
20
- }
21
- ],
22
- "version" : 2
23
- }
package/Mintfile DELETED
@@ -1,3 +0,0 @@
1
- calda/SwiftFormat@0.50-beta-1
2
- realm/SwiftLint@0.42.0
3
- thii/xcbeautify@0.10.2