react-native-firework-sdk 2.10.1 → 2.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/android/gradle.properties +1 -1
  2. package/android/src/main/java/com/fireworksdk/bridge/components/storyblock/StoryBlockFragment.kt +18 -1
  3. package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +4 -0
  4. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModel.kt +0 -1
  5. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelDeserializer.kt +0 -3
  6. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelSerializer.kt +0 -2
  7. package/android/src/main/java/com/fireworksdk/bridge/models/FWSdkInitResultModel.kt +6 -0
  8. package/android/src/main/java/com/fireworksdk/bridge/models/FWTrackPurchaseModel.kt +9 -0
  9. package/android/src/main/java/com/fireworksdk/bridge/models/FWTrackPurchaseModelDeserializer.kt +45 -0
  10. package/android/src/main/java/com/fireworksdk/bridge/models/FWTrackPurchaseModelSerializer.kt +34 -0
  11. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedItemDetailsModel.kt +1 -0
  12. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlaybackDetails.kt +1 -0
  13. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModel.kt +2 -1
  14. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelDeserializer.kt +4 -1
  15. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelSerializer.kt +2 -0
  16. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerLogoConfigurationModel.kt +8 -0
  17. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerLogoConfigurationModelDeserializer.kt +23 -0
  18. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerLogoConfigurationModelSerializer.kt +18 -0
  19. package/android/src/main/java/com/fireworksdk/bridge/models/enums/FWEventName.kt +2 -0
  20. package/android/src/main/java/com/fireworksdk/bridge/models/enums/FWVideoPlayerLogoOption.kt +19 -0
  21. package/android/src/main/java/com/fireworksdk/bridge/reactnative/FWReactNativeSDK.kt +103 -0
  22. package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt +12 -0
  23. package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +8 -0
  24. package/android/src/main/java/com/fireworksdk/bridge/reactnative/models/FireworkSDKInterface.kt +2 -0
  25. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWVideoShoppingModule.kt +22 -9
  26. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FireworkSDKModule.kt +74 -122
  27. package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/FWEventUtils.kt +34 -9
  28. package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +13 -0
  29. package/android/src/main/java/com/fireworksdk/bridge/utils/FWFragmentUtil.kt +3 -3
  30. package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +5 -2
  31. package/android/src/main/java/com/fireworksdk/bridge/utils/FWModelUtils.kt +64 -0
  32. package/ios/Components/ReplayBadgeConfiguration.swift +12 -0
  33. package/ios/Components/StoryBlock.swift +31 -0
  34. package/ios/Components/StoryBlockConfiguration.swift +1 -0
  35. package/ios/Components/StoryBlockManager.m +24 -0
  36. package/ios/Components/StoryBlockManager.swift +6 -3
  37. package/ios/Components/VideoFeed.swift +18 -3
  38. package/ios/Components/VideoFeedConfiguration.swift +1 -0
  39. package/ios/Components/VideoFeedManager.m +4 -1
  40. package/ios/Components/VideoFeedManager.swift +6 -3
  41. package/ios/Components/VideoPlayerConfiguration.swift +1 -0
  42. package/ios/FWReactNativeSDK.swift +14 -0
  43. package/ios/FireworkSdk.xcodeproj/project.pbxproj +4 -0
  44. package/ios/Modules/FireworkSDKModule/FireworkSDKModule+CTA.swift +17 -15
  45. package/ios/Modules/FireworkSDKModule/FireworkSDKModule+EventTracking.swift +1 -11
  46. package/ios/Modules/FireworkSDKModule/FireworkSDKModule.m +1 -0
  47. package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +80 -81
  48. package/ios/Modules/FireworkSDKModule/SDKInitOptions.swift +9 -5
  49. package/ios/Modules/Shopping/ShoppingModule.swift +10 -74
  50. package/lib/commonjs/FireworkSDK.js +30 -25
  51. package/lib/commonjs/FireworkSDK.js.map +1 -1
  52. package/lib/commonjs/VideoShopping.js +6 -12
  53. package/lib/commonjs/VideoShopping.js.map +1 -1
  54. package/lib/commonjs/components/StoryBlock.js +54 -3
  55. package/lib/commonjs/components/StoryBlock.js.map +1 -1
  56. package/lib/commonjs/components/VideoFeed.js +46 -4
  57. package/lib/commonjs/components/VideoFeed.js.map +1 -1
  58. package/lib/commonjs/index.js.map +1 -1
  59. package/lib/commonjs/models/FWNativeErrorAction.js +14 -0
  60. package/lib/commonjs/models/FWNativeErrorAction.js.map +1 -0
  61. package/lib/commonjs/models/ReplayBadgeConfiguration.js +2 -0
  62. package/lib/commonjs/models/ReplayBadgeConfiguration.js.map +1 -0
  63. package/lib/commonjs/modules/FireworkSDKModule.js.map +1 -1
  64. package/lib/module/FireworkSDK.js +29 -25
  65. package/lib/module/FireworkSDK.js.map +1 -1
  66. package/lib/module/VideoShopping.js +6 -12
  67. package/lib/module/VideoShopping.js.map +1 -1
  68. package/lib/module/components/StoryBlock.js +53 -3
  69. package/lib/module/components/StoryBlock.js.map +1 -1
  70. package/lib/module/components/VideoFeed.js +42 -4
  71. package/lib/module/components/VideoFeed.js.map +1 -1
  72. package/lib/module/index.js.map +1 -1
  73. package/lib/module/models/FWNativeErrorAction.js +7 -0
  74. package/lib/module/models/FWNativeErrorAction.js.map +1 -0
  75. package/lib/module/models/ReplayBadgeConfiguration.js +2 -0
  76. package/lib/module/models/ReplayBadgeConfiguration.js.map +1 -0
  77. package/lib/module/modules/FireworkSDKModule.js.map +1 -1
  78. package/lib/typescript/VideoShopping.d.ts +2 -2
  79. package/lib/typescript/components/StoryBlock.d.ts +18 -1
  80. package/lib/typescript/components/VideoFeed.d.ts +7 -1
  81. package/lib/typescript/index.d.ts +2 -2
  82. package/lib/typescript/models/FWEvents.d.ts +26 -3
  83. package/lib/typescript/models/FWNativeErrorAction.d.ts +4 -0
  84. package/lib/typescript/models/FeedItemDetails.d.ts +6 -1
  85. package/lib/typescript/models/ReplayBadgeConfiguration.d.ts +7 -0
  86. package/lib/typescript/models/StoryBlockConfiguration.d.ts +6 -1
  87. package/lib/typescript/models/VideoFeedConfiguration.d.ts +6 -0
  88. package/lib/typescript/models/VideoPlayerConfiguration.d.ts +6 -1
  89. package/lib/typescript/modules/FireworkSDKModule.d.ts +1 -0
  90. package/package.json +1 -5
  91. package/react-native-firework-sdk.podspec +3 -5
  92. package/src/FireworkSDK.ts +27 -24
  93. package/src/VideoShopping.ts +9 -11
  94. package/src/components/StoryBlock.tsx +69 -7
  95. package/src/components/VideoFeed.tsx +57 -12
  96. package/src/index.ts +2 -0
  97. package/src/models/FWEvents.ts +28 -3
  98. package/src/models/FWNativeErrorAction.ts +4 -0
  99. package/src/models/FeedItemDetails.ts +7 -1
  100. package/src/models/ReplayBadgeConfiguration.ts +7 -0
  101. package/src/models/StoryBlockConfiguration.ts +6 -1
  102. package/src/models/VideoFeedConfiguration.ts +6 -0
  103. package/src/models/VideoPlayerConfiguration.ts +6 -1
  104. package/src/modules/FireworkSDKModule.ts +1 -0
  105. package/FireworkVideoUI.xcframework/Info.plist +0 -40
  106. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/FireworkVideoUI +0 -0
  107. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +0 -280
  108. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +0 -18
  109. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Info.plist +0 -0
  110. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.abi.json +0 -1313
  111. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -42
  112. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  113. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftinterface +0 -42
  114. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/module.modulemap +0 -11
  115. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/FireworkVideoUI +0 -0
  116. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +0 -556
  117. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +0 -18
  118. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Info.plist +0 -0
  119. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -1313
  120. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -42
  121. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  122. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -42
  123. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -1313
  124. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -42
  125. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  126. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -42
  127. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/module.modulemap +0 -11
  128. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/_CodeSignature/CodeResources +0 -245
  129. package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.docc/FireworkVideoUI.md +0 -13
  130. package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.h +0 -18
  131. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/AppLanguageManager.swift +0 -154
  132. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/Bundle+AppLanguage.swift +0 -73
  133. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/NumberFormatter+AppLanguage.swift +0 -25
  134. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/URLSession+AppLanguage.swift +0 -52
  135. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIImageView+AppLanguage.swift +0 -60
  136. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UILabel+AppLanguage.swift +0 -98
  137. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextField+AppLanguage.swift +0 -97
  138. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextView+AppLanguage.swift +0 -97
  139. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIView+AppLanguage.swift +0 -71
  140. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIViewController+AppLanguage.swift +0 -48
  141. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIWindow+AppLanguage.swift +0 -26
  142. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/LanguageUtil.swift +0 -43
  143. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/Foundation/NSObject+LayoutFlip.swift +0 -42
  144. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/CALayer+LayoutFlip.swift +0 -149
  145. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UILabel+LayoutFlip.swift +0 -35
  146. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UIView+LayoutFlip.swift +0 -202
  147. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/LayoutFlipManager.swift +0 -59
  148. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/DispatchQueue+Once.swift +0 -32
  149. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/String+Base64.swift +0 -18
  150. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/UIKit/UIView+UIHierarchy.swift +0 -46
  151. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Swizzle.swift +0 -37
  152. package/ios/FireworkVideoUI/FireworkVideoUI.xcodeproj/project.pbxproj +0 -766
  153. package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/contents.xcworkspacedata +0 -10
  154. package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  155. package/ios/FireworkVideoUI/FireworkVideoUITests/FireworkVideoUITests.swift +0 -37
  156. package/ios/FireworkVideoUI/Podfile +0 -15
  157. package/ios/FireworkVideoUI/Podfile.lock +0 -16
  158. package/ios/scripts/react_native_firework_sdk_pods.rb +0 -27
@@ -1,766 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 56;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 89CDDD7D2A016440006DD185 /* Swizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD5D2A016440006DD185 /* Swizzle.swift */; };
11
- 89CDDD7E2A016440006DD185 /* UIView+UIHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD602A016440006DD185 /* UIView+UIHierarchy.swift */; };
12
- 89CDDD7F2A016440006DD185 /* DispatchQueue+Once.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD622A016440006DD185 /* DispatchQueue+Once.swift */; };
13
- 89CDDD802A016440006DD185 /* String+Base64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD632A016440006DD185 /* String+Base64.swift */; };
14
- 89CDDD812A016440006DD185 /* UILabel+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD672A016440006DD185 /* UILabel+LayoutFlip.swift */; };
15
- 89CDDD822A016440006DD185 /* CALayer+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD682A016440006DD185 /* CALayer+LayoutFlip.swift */; };
16
- 89CDDD832A016440006DD185 /* UIView+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD692A016440006DD185 /* UIView+LayoutFlip.swift */; };
17
- 89CDDD842A016440006DD185 /* NSObject+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6B2A016440006DD185 /* NSObject+LayoutFlip.swift */; };
18
- 89CDDD852A016440006DD185 /* LayoutFlipManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6C2A016440006DD185 /* LayoutFlipManager.swift */; };
19
- 89CDDD862A016440006DD185 /* AppLanguageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6E2A016440006DD185 /* AppLanguageManager.swift */; };
20
- 89CDDD872A016440006DD185 /* LanguageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6F2A016440006DD185 /* LanguageUtil.swift */; };
21
- 89CDDD882A016440006DD185 /* UITextView+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD722A016440006DD185 /* UITextView+AppLanguage.swift */; };
22
- 89CDDD892A016440006DD185 /* UIWindow+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD732A016440006DD185 /* UIWindow+AppLanguage.swift */; };
23
- 89CDDD8A2A016440006DD185 /* UITextField+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD742A016440006DD185 /* UITextField+AppLanguage.swift */; };
24
- 89CDDD8B2A016440006DD185 /* UIImageView+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD752A016440006DD185 /* UIImageView+AppLanguage.swift */; };
25
- 89CDDD8C2A016440006DD185 /* UILabel+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD762A016440006DD185 /* UILabel+AppLanguage.swift */; };
26
- 89CDDD8D2A016440006DD185 /* UIView+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD772A016440006DD185 /* UIView+AppLanguage.swift */; };
27
- 89CDDD8E2A016440006DD185 /* UIViewController+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD782A016440006DD185 /* UIViewController+AppLanguage.swift */; };
28
- 89CDDD8F2A016440006DD185 /* Bundle+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD7A2A016440006DD185 /* Bundle+AppLanguage.swift */; };
29
- 89CDDD902A016440006DD185 /* NumberFormatter+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD7B2A016440006DD185 /* NumberFormatter+AppLanguage.swift */; };
30
- 89CDDD912A016440006DD185 /* URLSession+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD7C2A016440006DD185 /* URLSession+AppLanguage.swift */; };
31
- 89DF336329F813F600A8B124 /* FireworkVideoUI.docc in Sources */ = {isa = PBXBuildFile; fileRef = 89DF336229F813F600A8B124 /* FireworkVideoUI.docc */; };
32
- 89DF336929F813F600A8B124 /* FireworkVideoUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */; };
33
- 89DF336E29F813F600A8B124 /* FireworkVideoUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF336D29F813F600A8B124 /* FireworkVideoUITests.swift */; };
34
- 89DF336F29F813F600A8B124 /* FireworkVideoUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DF336129F813F600A8B124 /* FireworkVideoUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
35
- AED4A4262153F7316704EE62 /* Pods_FireworkVideoUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC24AE10C629C46DB3051A00 /* Pods_FireworkVideoUI.framework */; };
36
- C680202B9D76DB8DCCBAAFD6 /* Pods_FireworkVideoUI_FireworkVideoUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDC72495DF0F7D2E7307137B /* Pods_FireworkVideoUI_FireworkVideoUITests.framework */; };
37
- /* End PBXBuildFile section */
38
-
39
- /* Begin PBXContainerItemProxy section */
40
- 89DF336A29F813F600A8B124 /* PBXContainerItemProxy */ = {
41
- isa = PBXContainerItemProxy;
42
- containerPortal = 89DF335529F813F600A8B124 /* Project object */;
43
- proxyType = 1;
44
- remoteGlobalIDString = 89DF335D29F813F600A8B124;
45
- remoteInfo = FireworkVideoUI;
46
- };
47
- /* End PBXContainerItemProxy section */
48
-
49
- /* Begin PBXFileReference section */
50
- 0295D432D8B9320FECFD2EF0 /* Pods-FireworkVideoUI.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI.release.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI/Pods-FireworkVideoUI.release.xcconfig"; sourceTree = "<group>"; };
51
- 0526674B3FA99B5D289F8B04 /* Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig"; sourceTree = "<group>"; };
52
- 43E9D4C021993E1D1128C09C /* Pods-FireworkVideoUI.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI.debug.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI/Pods-FireworkVideoUI.debug.xcconfig"; sourceTree = "<group>"; };
53
- 89CDDD5D2A016440006DD185 /* Swizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Swizzle.swift; sourceTree = "<group>"; };
54
- 89CDDD602A016440006DD185 /* UIView+UIHierarchy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+UIHierarchy.swift"; sourceTree = "<group>"; };
55
- 89CDDD622A016440006DD185 /* DispatchQueue+Once.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Once.swift"; sourceTree = "<group>"; };
56
- 89CDDD632A016440006DD185 /* String+Base64.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+Base64.swift"; sourceTree = "<group>"; };
57
- 89CDDD672A016440006DD185 /* UILabel+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+LayoutFlip.swift"; sourceTree = "<group>"; };
58
- 89CDDD682A016440006DD185 /* CALayer+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CALayer+LayoutFlip.swift"; sourceTree = "<group>"; };
59
- 89CDDD692A016440006DD185 /* UIView+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+LayoutFlip.swift"; sourceTree = "<group>"; };
60
- 89CDDD6B2A016440006DD185 /* NSObject+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+LayoutFlip.swift"; sourceTree = "<group>"; };
61
- 89CDDD6C2A016440006DD185 /* LayoutFlipManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LayoutFlipManager.swift; sourceTree = "<group>"; };
62
- 89CDDD6E2A016440006DD185 /* AppLanguageManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppLanguageManager.swift; sourceTree = "<group>"; };
63
- 89CDDD6F2A016440006DD185 /* LanguageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LanguageUtil.swift; sourceTree = "<group>"; };
64
- 89CDDD722A016440006DD185 /* UITextView+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextView+AppLanguage.swift"; sourceTree = "<group>"; };
65
- 89CDDD732A016440006DD185 /* UIWindow+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIWindow+AppLanguage.swift"; sourceTree = "<group>"; };
66
- 89CDDD742A016440006DD185 /* UITextField+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextField+AppLanguage.swift"; sourceTree = "<group>"; };
67
- 89CDDD752A016440006DD185 /* UIImageView+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+AppLanguage.swift"; sourceTree = "<group>"; };
68
- 89CDDD762A016440006DD185 /* UILabel+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+AppLanguage.swift"; sourceTree = "<group>"; };
69
- 89CDDD772A016440006DD185 /* UIView+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+AppLanguage.swift"; sourceTree = "<group>"; };
70
- 89CDDD782A016440006DD185 /* UIViewController+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+AppLanguage.swift"; sourceTree = "<group>"; };
71
- 89CDDD7A2A016440006DD185 /* Bundle+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Bundle+AppLanguage.swift"; sourceTree = "<group>"; };
72
- 89CDDD7B2A016440006DD185 /* NumberFormatter+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NumberFormatter+AppLanguage.swift"; sourceTree = "<group>"; };
73
- 89CDDD7C2A016440006DD185 /* URLSession+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "URLSession+AppLanguage.swift"; sourceTree = "<group>"; };
74
- 89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FireworkVideoUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
75
- 89DF336129F813F600A8B124 /* FireworkVideoUI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireworkVideoUI.h; sourceTree = "<group>"; };
76
- 89DF336229F813F600A8B124 /* FireworkVideoUI.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = FireworkVideoUI.docc; sourceTree = "<group>"; };
77
- 89DF336829F813F600A8B124 /* FireworkVideoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FireworkVideoUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
78
- 89DF336D29F813F600A8B124 /* FireworkVideoUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FireworkVideoUITests.swift; sourceTree = "<group>"; };
79
- 9CB1172B21699595C412032C /* Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig"; sourceTree = "<group>"; };
80
- FC24AE10C629C46DB3051A00 /* Pods_FireworkVideoUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FireworkVideoUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
81
- FDC72495DF0F7D2E7307137B /* Pods_FireworkVideoUI_FireworkVideoUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FireworkVideoUI_FireworkVideoUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
82
- /* End PBXFileReference section */
83
-
84
- /* Begin PBXFrameworksBuildPhase section */
85
- 89DF335B29F813F600A8B124 /* Frameworks */ = {
86
- isa = PBXFrameworksBuildPhase;
87
- buildActionMask = 2147483647;
88
- files = (
89
- AED4A4262153F7316704EE62 /* Pods_FireworkVideoUI.framework in Frameworks */,
90
- );
91
- runOnlyForDeploymentPostprocessing = 0;
92
- };
93
- 89DF336529F813F600A8B124 /* Frameworks */ = {
94
- isa = PBXFrameworksBuildPhase;
95
- buildActionMask = 2147483647;
96
- files = (
97
- 89DF336929F813F600A8B124 /* FireworkVideoUI.framework in Frameworks */,
98
- C680202B9D76DB8DCCBAAFD6 /* Pods_FireworkVideoUI_FireworkVideoUITests.framework in Frameworks */,
99
- );
100
- runOnlyForDeploymentPostprocessing = 0;
101
- };
102
- /* End PBXFrameworksBuildPhase section */
103
-
104
- /* Begin PBXGroup section */
105
- 10002CD714337348ABB5EF18 /* Frameworks */ = {
106
- isa = PBXGroup;
107
- children = (
108
- FC24AE10C629C46DB3051A00 /* Pods_FireworkVideoUI.framework */,
109
- FDC72495DF0F7D2E7307137B /* Pods_FireworkVideoUI_FireworkVideoUITests.framework */,
110
- );
111
- name = Frameworks;
112
- sourceTree = "<group>";
113
- };
114
- 89CDDD5B2A016440006DD185 /* Sources */ = {
115
- isa = PBXGroup;
116
- children = (
117
- 89CDDD5C2A016440006DD185 /* Utils */,
118
- 89CDDD642A016440006DD185 /* LayoutFlip */,
119
- 89CDDD6D2A016440006DD185 /* AppLanguage */,
120
- );
121
- path = Sources;
122
- sourceTree = "<group>";
123
- };
124
- 89CDDD5C2A016440006DD185 /* Utils */ = {
125
- isa = PBXGroup;
126
- children = (
127
- 89CDDD5D2A016440006DD185 /* Swizzle.swift */,
128
- 89CDDD5E2A016440006DD185 /* Extensions */,
129
- );
130
- path = Utils;
131
- sourceTree = "<group>";
132
- };
133
- 89CDDD5E2A016440006DD185 /* Extensions */ = {
134
- isa = PBXGroup;
135
- children = (
136
- 89CDDD5F2A016440006DD185 /* UIKit */,
137
- 89CDDD612A016440006DD185 /* Foundation */,
138
- );
139
- path = Extensions;
140
- sourceTree = "<group>";
141
- };
142
- 89CDDD5F2A016440006DD185 /* UIKit */ = {
143
- isa = PBXGroup;
144
- children = (
145
- 89CDDD602A016440006DD185 /* UIView+UIHierarchy.swift */,
146
- );
147
- path = UIKit;
148
- sourceTree = "<group>";
149
- };
150
- 89CDDD612A016440006DD185 /* Foundation */ = {
151
- isa = PBXGroup;
152
- children = (
153
- 89CDDD622A016440006DD185 /* DispatchQueue+Once.swift */,
154
- 89CDDD632A016440006DD185 /* String+Base64.swift */,
155
- );
156
- path = Foundation;
157
- sourceTree = "<group>";
158
- };
159
- 89CDDD642A016440006DD185 /* LayoutFlip */ = {
160
- isa = PBXGroup;
161
- children = (
162
- 89CDDD652A016440006DD185 /* Extensions */,
163
- 89CDDD6C2A016440006DD185 /* LayoutFlipManager.swift */,
164
- );
165
- path = LayoutFlip;
166
- sourceTree = "<group>";
167
- };
168
- 89CDDD652A016440006DD185 /* Extensions */ = {
169
- isa = PBXGroup;
170
- children = (
171
- 89CDDD662A016440006DD185 /* UIKit */,
172
- 89CDDD6A2A016440006DD185 /* Foundation */,
173
- );
174
- path = Extensions;
175
- sourceTree = "<group>";
176
- };
177
- 89CDDD662A016440006DD185 /* UIKit */ = {
178
- isa = PBXGroup;
179
- children = (
180
- 89CDDD672A016440006DD185 /* UILabel+LayoutFlip.swift */,
181
- 89CDDD682A016440006DD185 /* CALayer+LayoutFlip.swift */,
182
- 89CDDD692A016440006DD185 /* UIView+LayoutFlip.swift */,
183
- );
184
- path = UIKit;
185
- sourceTree = "<group>";
186
- };
187
- 89CDDD6A2A016440006DD185 /* Foundation */ = {
188
- isa = PBXGroup;
189
- children = (
190
- 89CDDD6B2A016440006DD185 /* NSObject+LayoutFlip.swift */,
191
- );
192
- path = Foundation;
193
- sourceTree = "<group>";
194
- };
195
- 89CDDD6D2A016440006DD185 /* AppLanguage */ = {
196
- isa = PBXGroup;
197
- children = (
198
- 89CDDD6E2A016440006DD185 /* AppLanguageManager.swift */,
199
- 89CDDD6F2A016440006DD185 /* LanguageUtil.swift */,
200
- 89CDDD702A016440006DD185 /* Extensions */,
201
- );
202
- path = AppLanguage;
203
- sourceTree = "<group>";
204
- };
205
- 89CDDD702A016440006DD185 /* Extensions */ = {
206
- isa = PBXGroup;
207
- children = (
208
- 89CDDD712A016440006DD185 /* UIKit */,
209
- 89CDDD792A016440006DD185 /* Foundation */,
210
- );
211
- path = Extensions;
212
- sourceTree = "<group>";
213
- };
214
- 89CDDD712A016440006DD185 /* UIKit */ = {
215
- isa = PBXGroup;
216
- children = (
217
- 89CDDD722A016440006DD185 /* UITextView+AppLanguage.swift */,
218
- 89CDDD732A016440006DD185 /* UIWindow+AppLanguage.swift */,
219
- 89CDDD742A016440006DD185 /* UITextField+AppLanguage.swift */,
220
- 89CDDD752A016440006DD185 /* UIImageView+AppLanguage.swift */,
221
- 89CDDD762A016440006DD185 /* UILabel+AppLanguage.swift */,
222
- 89CDDD772A016440006DD185 /* UIView+AppLanguage.swift */,
223
- 89CDDD782A016440006DD185 /* UIViewController+AppLanguage.swift */,
224
- );
225
- path = UIKit;
226
- sourceTree = "<group>";
227
- };
228
- 89CDDD792A016440006DD185 /* Foundation */ = {
229
- isa = PBXGroup;
230
- children = (
231
- 89CDDD7A2A016440006DD185 /* Bundle+AppLanguage.swift */,
232
- 89CDDD7B2A016440006DD185 /* NumberFormatter+AppLanguage.swift */,
233
- 89CDDD7C2A016440006DD185 /* URLSession+AppLanguage.swift */,
234
- );
235
- path = Foundation;
236
- sourceTree = "<group>";
237
- };
238
- 89DF335429F813F600A8B124 = {
239
- isa = PBXGroup;
240
- children = (
241
- 89DF336029F813F600A8B124 /* FireworkVideoUI */,
242
- 89DF336C29F813F600A8B124 /* FireworkVideoUITests */,
243
- 89DF335F29F813F600A8B124 /* Products */,
244
- F00682068F9752FDCE48B55B /* Pods */,
245
- 10002CD714337348ABB5EF18 /* Frameworks */,
246
- );
247
- sourceTree = "<group>";
248
- };
249
- 89DF335F29F813F600A8B124 /* Products */ = {
250
- isa = PBXGroup;
251
- children = (
252
- 89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */,
253
- 89DF336829F813F600A8B124 /* FireworkVideoUITests.xctest */,
254
- );
255
- name = Products;
256
- sourceTree = "<group>";
257
- };
258
- 89DF336029F813F600A8B124 /* FireworkVideoUI */ = {
259
- isa = PBXGroup;
260
- children = (
261
- 89CDDD5B2A016440006DD185 /* Sources */,
262
- 89DF336129F813F600A8B124 /* FireworkVideoUI.h */,
263
- 89DF336229F813F600A8B124 /* FireworkVideoUI.docc */,
264
- );
265
- path = FireworkVideoUI;
266
- sourceTree = "<group>";
267
- };
268
- 89DF336C29F813F600A8B124 /* FireworkVideoUITests */ = {
269
- isa = PBXGroup;
270
- children = (
271
- 89DF336D29F813F600A8B124 /* FireworkVideoUITests.swift */,
272
- );
273
- path = FireworkVideoUITests;
274
- sourceTree = "<group>";
275
- };
276
- F00682068F9752FDCE48B55B /* Pods */ = {
277
- isa = PBXGroup;
278
- children = (
279
- 43E9D4C021993E1D1128C09C /* Pods-FireworkVideoUI.debug.xcconfig */,
280
- 0295D432D8B9320FECFD2EF0 /* Pods-FireworkVideoUI.release.xcconfig */,
281
- 0526674B3FA99B5D289F8B04 /* Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig */,
282
- 9CB1172B21699595C412032C /* Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig */,
283
- );
284
- path = Pods;
285
- sourceTree = "<group>";
286
- };
287
- /* End PBXGroup section */
288
-
289
- /* Begin PBXHeadersBuildPhase section */
290
- 89DF335929F813F600A8B124 /* Headers */ = {
291
- isa = PBXHeadersBuildPhase;
292
- buildActionMask = 2147483647;
293
- files = (
294
- 89DF336F29F813F600A8B124 /* FireworkVideoUI.h in Headers */,
295
- );
296
- runOnlyForDeploymentPostprocessing = 0;
297
- };
298
- /* End PBXHeadersBuildPhase section */
299
-
300
- /* Begin PBXNativeTarget section */
301
- 89DF335D29F813F600A8B124 /* FireworkVideoUI */ = {
302
- isa = PBXNativeTarget;
303
- buildConfigurationList = 89DF337229F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUI" */;
304
- buildPhases = (
305
- 88FF76CA511D81BEBB5DA460 /* [CP] Check Pods Manifest.lock */,
306
- 89DF335929F813F600A8B124 /* Headers */,
307
- 89DF335A29F813F600A8B124 /* Sources */,
308
- 89DF335B29F813F600A8B124 /* Frameworks */,
309
- 89DF335C29F813F600A8B124 /* Resources */,
310
- );
311
- buildRules = (
312
- );
313
- dependencies = (
314
- );
315
- name = FireworkVideoUI;
316
- productName = FireworkVideoUI;
317
- productReference = 89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */;
318
- productType = "com.apple.product-type.framework";
319
- };
320
- 89DF336729F813F600A8B124 /* FireworkVideoUITests */ = {
321
- isa = PBXNativeTarget;
322
- buildConfigurationList = 89DF337529F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUITests" */;
323
- buildPhases = (
324
- AD11B2B9C53940AF212B92E7 /* [CP] Check Pods Manifest.lock */,
325
- 89DF336429F813F600A8B124 /* Sources */,
326
- 89DF336529F813F600A8B124 /* Frameworks */,
327
- 89DF336629F813F600A8B124 /* Resources */,
328
- E41A9C7B9A1CDE7BFB4DE25F /* [CP] Embed Pods Frameworks */,
329
- );
330
- buildRules = (
331
- );
332
- dependencies = (
333
- 89DF336B29F813F600A8B124 /* PBXTargetDependency */,
334
- );
335
- name = FireworkVideoUITests;
336
- productName = FireworkVideoUITests;
337
- productReference = 89DF336829F813F600A8B124 /* FireworkVideoUITests.xctest */;
338
- productType = "com.apple.product-type.bundle.unit-test";
339
- };
340
- /* End PBXNativeTarget section */
341
-
342
- /* Begin PBXProject section */
343
- 89DF335529F813F600A8B124 /* Project object */ = {
344
- isa = PBXProject;
345
- attributes = {
346
- BuildIndependentTargetsInParallel = 1;
347
- LastSwiftUpdateCheck = 1420;
348
- LastUpgradeCheck = 1420;
349
- TargetAttributes = {
350
- 89DF335D29F813F600A8B124 = {
351
- CreatedOnToolsVersion = 14.2;
352
- };
353
- 89DF336729F813F600A8B124 = {
354
- CreatedOnToolsVersion = 14.2;
355
- };
356
- };
357
- };
358
- buildConfigurationList = 89DF335829F813F600A8B124 /* Build configuration list for PBXProject "FireworkVideoUI" */;
359
- compatibilityVersion = "Xcode 14.0";
360
- developmentRegion = en;
361
- hasScannedForEncodings = 0;
362
- knownRegions = (
363
- en,
364
- Base,
365
- );
366
- mainGroup = 89DF335429F813F600A8B124;
367
- productRefGroup = 89DF335F29F813F600A8B124 /* Products */;
368
- projectDirPath = "";
369
- projectRoot = "";
370
- targets = (
371
- 89DF335D29F813F600A8B124 /* FireworkVideoUI */,
372
- 89DF336729F813F600A8B124 /* FireworkVideoUITests */,
373
- );
374
- };
375
- /* End PBXProject section */
376
-
377
- /* Begin PBXResourcesBuildPhase section */
378
- 89DF335C29F813F600A8B124 /* Resources */ = {
379
- isa = PBXResourcesBuildPhase;
380
- buildActionMask = 2147483647;
381
- files = (
382
- );
383
- runOnlyForDeploymentPostprocessing = 0;
384
- };
385
- 89DF336629F813F600A8B124 /* Resources */ = {
386
- isa = PBXResourcesBuildPhase;
387
- buildActionMask = 2147483647;
388
- files = (
389
- );
390
- runOnlyForDeploymentPostprocessing = 0;
391
- };
392
- /* End PBXResourcesBuildPhase section */
393
-
394
- /* Begin PBXShellScriptBuildPhase section */
395
- 88FF76CA511D81BEBB5DA460 /* [CP] Check Pods Manifest.lock */ = {
396
- isa = PBXShellScriptBuildPhase;
397
- buildActionMask = 2147483647;
398
- files = (
399
- );
400
- inputFileListPaths = (
401
- );
402
- inputPaths = (
403
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
404
- "${PODS_ROOT}/Manifest.lock",
405
- );
406
- name = "[CP] Check Pods Manifest.lock";
407
- outputFileListPaths = (
408
- );
409
- outputPaths = (
410
- "$(DERIVED_FILE_DIR)/Pods-FireworkVideoUI-checkManifestLockResult.txt",
411
- );
412
- runOnlyForDeploymentPostprocessing = 0;
413
- shellPath = /bin/sh;
414
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
415
- showEnvVarsInLog = 0;
416
- };
417
- AD11B2B9C53940AF212B92E7 /* [CP] Check Pods Manifest.lock */ = {
418
- isa = PBXShellScriptBuildPhase;
419
- buildActionMask = 2147483647;
420
- files = (
421
- );
422
- inputFileListPaths = (
423
- );
424
- inputPaths = (
425
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
426
- "${PODS_ROOT}/Manifest.lock",
427
- );
428
- name = "[CP] Check Pods Manifest.lock";
429
- outputFileListPaths = (
430
- );
431
- outputPaths = (
432
- "$(DERIVED_FILE_DIR)/Pods-FireworkVideoUI-FireworkVideoUITests-checkManifestLockResult.txt",
433
- );
434
- runOnlyForDeploymentPostprocessing = 0;
435
- shellPath = /bin/sh;
436
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
437
- showEnvVarsInLog = 0;
438
- };
439
- E41A9C7B9A1CDE7BFB4DE25F /* [CP] Embed Pods Frameworks */ = {
440
- isa = PBXShellScriptBuildPhase;
441
- buildActionMask = 2147483647;
442
- files = (
443
- );
444
- inputFileListPaths = (
445
- "${PODS_ROOT}/Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
446
- );
447
- name = "[CP] Embed Pods Frameworks";
448
- outputFileListPaths = (
449
- "${PODS_ROOT}/Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
450
- );
451
- runOnlyForDeploymentPostprocessing = 0;
452
- shellPath = /bin/sh;
453
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests-frameworks.sh\"\n";
454
- showEnvVarsInLog = 0;
455
- };
456
- /* End PBXShellScriptBuildPhase section */
457
-
458
- /* Begin PBXSourcesBuildPhase section */
459
- 89DF335A29F813F600A8B124 /* Sources */ = {
460
- isa = PBXSourcesBuildPhase;
461
- buildActionMask = 2147483647;
462
- files = (
463
- 89CDDD8E2A016440006DD185 /* UIViewController+AppLanguage.swift in Sources */,
464
- 89CDDD8F2A016440006DD185 /* Bundle+AppLanguage.swift in Sources */,
465
- 89CDDD912A016440006DD185 /* URLSession+AppLanguage.swift in Sources */,
466
- 89CDDD902A016440006DD185 /* NumberFormatter+AppLanguage.swift in Sources */,
467
- 89CDDD852A016440006DD185 /* LayoutFlipManager.swift in Sources */,
468
- 89CDDD7F2A016440006DD185 /* DispatchQueue+Once.swift in Sources */,
469
- 89CDDD822A016440006DD185 /* CALayer+LayoutFlip.swift in Sources */,
470
- 89CDDD812A016440006DD185 /* UILabel+LayoutFlip.swift in Sources */,
471
- 89CDDD8B2A016440006DD185 /* UIImageView+AppLanguage.swift in Sources */,
472
- 89CDDD7E2A016440006DD185 /* UIView+UIHierarchy.swift in Sources */,
473
- 89CDDD8A2A016440006DD185 /* UITextField+AppLanguage.swift in Sources */,
474
- 89CDDD892A016440006DD185 /* UIWindow+AppLanguage.swift in Sources */,
475
- 89CDDD802A016440006DD185 /* String+Base64.swift in Sources */,
476
- 89CDDD7D2A016440006DD185 /* Swizzle.swift in Sources */,
477
- 89CDDD872A016440006DD185 /* LanguageUtil.swift in Sources */,
478
- 89CDDD8C2A016440006DD185 /* UILabel+AppLanguage.swift in Sources */,
479
- 89CDDD8D2A016440006DD185 /* UIView+AppLanguage.swift in Sources */,
480
- 89DF336329F813F600A8B124 /* FireworkVideoUI.docc in Sources */,
481
- 89CDDD842A016440006DD185 /* NSObject+LayoutFlip.swift in Sources */,
482
- 89CDDD862A016440006DD185 /* AppLanguageManager.swift in Sources */,
483
- 89CDDD882A016440006DD185 /* UITextView+AppLanguage.swift in Sources */,
484
- 89CDDD832A016440006DD185 /* UIView+LayoutFlip.swift in Sources */,
485
- );
486
- runOnlyForDeploymentPostprocessing = 0;
487
- };
488
- 89DF336429F813F600A8B124 /* Sources */ = {
489
- isa = PBXSourcesBuildPhase;
490
- buildActionMask = 2147483647;
491
- files = (
492
- 89DF336E29F813F600A8B124 /* FireworkVideoUITests.swift in Sources */,
493
- );
494
- runOnlyForDeploymentPostprocessing = 0;
495
- };
496
- /* End PBXSourcesBuildPhase section */
497
-
498
- /* Begin PBXTargetDependency section */
499
- 89DF336B29F813F600A8B124 /* PBXTargetDependency */ = {
500
- isa = PBXTargetDependency;
501
- target = 89DF335D29F813F600A8B124 /* FireworkVideoUI */;
502
- targetProxy = 89DF336A29F813F600A8B124 /* PBXContainerItemProxy */;
503
- };
504
- /* End PBXTargetDependency section */
505
-
506
- /* Begin XCBuildConfiguration section */
507
- 89DF337029F813F600A8B124 /* Debug */ = {
508
- isa = XCBuildConfiguration;
509
- buildSettings = {
510
- ALWAYS_SEARCH_USER_PATHS = NO;
511
- CLANG_ANALYZER_NONNULL = YES;
512
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
513
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
514
- CLANG_ENABLE_MODULES = YES;
515
- CLANG_ENABLE_OBJC_ARC = YES;
516
- CLANG_ENABLE_OBJC_WEAK = YES;
517
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
518
- CLANG_WARN_BOOL_CONVERSION = YES;
519
- CLANG_WARN_COMMA = YES;
520
- CLANG_WARN_CONSTANT_CONVERSION = YES;
521
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
522
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
523
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
524
- CLANG_WARN_EMPTY_BODY = YES;
525
- CLANG_WARN_ENUM_CONVERSION = YES;
526
- CLANG_WARN_INFINITE_RECURSION = YES;
527
- CLANG_WARN_INT_CONVERSION = YES;
528
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
529
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
530
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
531
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
532
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
533
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
534
- CLANG_WARN_STRICT_PROTOTYPES = YES;
535
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
536
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
537
- CLANG_WARN_UNREACHABLE_CODE = YES;
538
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
539
- COPY_PHASE_STRIP = NO;
540
- CURRENT_PROJECT_VERSION = 1;
541
- DEBUG_INFORMATION_FORMAT = dwarf;
542
- ENABLE_STRICT_OBJC_MSGSEND = YES;
543
- ENABLE_TESTABILITY = YES;
544
- GCC_C_LANGUAGE_STANDARD = gnu11;
545
- GCC_DYNAMIC_NO_PIC = NO;
546
- GCC_NO_COMMON_BLOCKS = YES;
547
- GCC_OPTIMIZATION_LEVEL = 0;
548
- GCC_PREPROCESSOR_DEFINITIONS = (
549
- "DEBUG=1",
550
- "$(inherited)",
551
- );
552
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
553
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
554
- GCC_WARN_UNDECLARED_SELECTOR = YES;
555
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
556
- GCC_WARN_UNUSED_FUNCTION = YES;
557
- GCC_WARN_UNUSED_VARIABLE = YES;
558
- IPHONEOS_DEPLOYMENT_TARGET = 16.2;
559
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
560
- MTL_FAST_MATH = YES;
561
- ONLY_ACTIVE_ARCH = YES;
562
- SDKROOT = iphoneos;
563
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
564
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
565
- VERSIONING_SYSTEM = "apple-generic";
566
- VERSION_INFO_PREFIX = "";
567
- };
568
- name = Debug;
569
- };
570
- 89DF337129F813F600A8B124 /* Release */ = {
571
- isa = XCBuildConfiguration;
572
- buildSettings = {
573
- ALWAYS_SEARCH_USER_PATHS = NO;
574
- CLANG_ANALYZER_NONNULL = YES;
575
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
576
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
577
- CLANG_ENABLE_MODULES = YES;
578
- CLANG_ENABLE_OBJC_ARC = YES;
579
- CLANG_ENABLE_OBJC_WEAK = YES;
580
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
581
- CLANG_WARN_BOOL_CONVERSION = YES;
582
- CLANG_WARN_COMMA = YES;
583
- CLANG_WARN_CONSTANT_CONVERSION = YES;
584
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
585
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
586
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
587
- CLANG_WARN_EMPTY_BODY = YES;
588
- CLANG_WARN_ENUM_CONVERSION = YES;
589
- CLANG_WARN_INFINITE_RECURSION = YES;
590
- CLANG_WARN_INT_CONVERSION = YES;
591
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
592
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
593
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
594
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
595
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
596
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
597
- CLANG_WARN_STRICT_PROTOTYPES = YES;
598
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
599
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
600
- CLANG_WARN_UNREACHABLE_CODE = YES;
601
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
602
- COPY_PHASE_STRIP = NO;
603
- CURRENT_PROJECT_VERSION = 1;
604
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
605
- ENABLE_NS_ASSERTIONS = NO;
606
- ENABLE_STRICT_OBJC_MSGSEND = YES;
607
- GCC_C_LANGUAGE_STANDARD = gnu11;
608
- GCC_NO_COMMON_BLOCKS = YES;
609
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
610
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
611
- GCC_WARN_UNDECLARED_SELECTOR = YES;
612
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
613
- GCC_WARN_UNUSED_FUNCTION = YES;
614
- GCC_WARN_UNUSED_VARIABLE = YES;
615
- IPHONEOS_DEPLOYMENT_TARGET = 16.2;
616
- MTL_ENABLE_DEBUG_INFO = NO;
617
- MTL_FAST_MATH = YES;
618
- SDKROOT = iphoneos;
619
- SWIFT_COMPILATION_MODE = wholemodule;
620
- SWIFT_OPTIMIZATION_LEVEL = "-O";
621
- VALIDATE_PRODUCT = YES;
622
- VERSIONING_SYSTEM = "apple-generic";
623
- VERSION_INFO_PREFIX = "";
624
- };
625
- name = Release;
626
- };
627
- 89DF337329F813F600A8B124 /* Debug */ = {
628
- isa = XCBuildConfiguration;
629
- baseConfigurationReference = 43E9D4C021993E1D1128C09C /* Pods-FireworkVideoUI.debug.xcconfig */;
630
- buildSettings = {
631
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
632
- CODE_SIGN_STYLE = Automatic;
633
- CURRENT_PROJECT_VERSION = 1;
634
- DEFINES_MODULE = YES;
635
- DEVELOPMENT_TEAM = "";
636
- DYLIB_COMPATIBILITY_VERSION = 1;
637
- DYLIB_CURRENT_VERSION = 1;
638
- DYLIB_INSTALL_NAME_BASE = "@rpath";
639
- GENERATE_INFOPLIST_FILE = YES;
640
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
641
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
642
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
643
- LD_RUNPATH_SEARCH_PATHS = (
644
- "$(inherited)",
645
- "@executable_path/Frameworks",
646
- "@loader_path/Frameworks",
647
- );
648
- MARKETING_VERSION = 1.0;
649
- PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUI;
650
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
651
- SKIP_INSTALL = YES;
652
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
653
- SUPPORTS_MACCATALYST = NO;
654
- SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
655
- SWIFT_EMIT_LOC_STRINGS = YES;
656
- SWIFT_VERSION = 5.0;
657
- TARGETED_DEVICE_FAMILY = "1,2";
658
- };
659
- name = Debug;
660
- };
661
- 89DF337429F813F600A8B124 /* Release */ = {
662
- isa = XCBuildConfiguration;
663
- baseConfigurationReference = 0295D432D8B9320FECFD2EF0 /* Pods-FireworkVideoUI.release.xcconfig */;
664
- buildSettings = {
665
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
666
- CODE_SIGN_STYLE = Automatic;
667
- CURRENT_PROJECT_VERSION = 1;
668
- DEFINES_MODULE = YES;
669
- DEVELOPMENT_TEAM = "";
670
- DYLIB_COMPATIBILITY_VERSION = 1;
671
- DYLIB_CURRENT_VERSION = 1;
672
- DYLIB_INSTALL_NAME_BASE = "@rpath";
673
- GENERATE_INFOPLIST_FILE = YES;
674
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
675
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
676
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
677
- LD_RUNPATH_SEARCH_PATHS = (
678
- "$(inherited)",
679
- "@executable_path/Frameworks",
680
- "@loader_path/Frameworks",
681
- );
682
- MARKETING_VERSION = 1.0;
683
- PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUI;
684
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
685
- SKIP_INSTALL = YES;
686
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
687
- SUPPORTS_MACCATALYST = NO;
688
- SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
689
- SWIFT_EMIT_LOC_STRINGS = YES;
690
- SWIFT_VERSION = 5.0;
691
- TARGETED_DEVICE_FAMILY = "1,2";
692
- };
693
- name = Release;
694
- };
695
- 89DF337629F813F600A8B124 /* Debug */ = {
696
- isa = XCBuildConfiguration;
697
- baseConfigurationReference = 0526674B3FA99B5D289F8B04 /* Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig */;
698
- buildSettings = {
699
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
700
- CODE_SIGN_STYLE = Automatic;
701
- CURRENT_PROJECT_VERSION = 1;
702
- DEVELOPMENT_TEAM = Z24TE4EN73;
703
- GENERATE_INFOPLIST_FILE = YES;
704
- IPHONEOS_DEPLOYMENT_TARGET = 12.1;
705
- MARKETING_VERSION = 1.0;
706
- PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUITests;
707
- PRODUCT_NAME = "$(TARGET_NAME)";
708
- SWIFT_EMIT_LOC_STRINGS = NO;
709
- SWIFT_VERSION = 5.0;
710
- TARGETED_DEVICE_FAMILY = "1,2";
711
- };
712
- name = Debug;
713
- };
714
- 89DF337729F813F600A8B124 /* Release */ = {
715
- isa = XCBuildConfiguration;
716
- baseConfigurationReference = 9CB1172B21699595C412032C /* Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig */;
717
- buildSettings = {
718
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
719
- CODE_SIGN_STYLE = Automatic;
720
- CURRENT_PROJECT_VERSION = 1;
721
- DEVELOPMENT_TEAM = Z24TE4EN73;
722
- GENERATE_INFOPLIST_FILE = YES;
723
- IPHONEOS_DEPLOYMENT_TARGET = 12.1;
724
- MARKETING_VERSION = 1.0;
725
- PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUITests;
726
- PRODUCT_NAME = "$(TARGET_NAME)";
727
- SWIFT_EMIT_LOC_STRINGS = NO;
728
- SWIFT_VERSION = 5.0;
729
- TARGETED_DEVICE_FAMILY = "1,2";
730
- };
731
- name = Release;
732
- };
733
- /* End XCBuildConfiguration section */
734
-
735
- /* Begin XCConfigurationList section */
736
- 89DF335829F813F600A8B124 /* Build configuration list for PBXProject "FireworkVideoUI" */ = {
737
- isa = XCConfigurationList;
738
- buildConfigurations = (
739
- 89DF337029F813F600A8B124 /* Debug */,
740
- 89DF337129F813F600A8B124 /* Release */,
741
- );
742
- defaultConfigurationIsVisible = 0;
743
- defaultConfigurationName = Release;
744
- };
745
- 89DF337229F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUI" */ = {
746
- isa = XCConfigurationList;
747
- buildConfigurations = (
748
- 89DF337329F813F600A8B124 /* Debug */,
749
- 89DF337429F813F600A8B124 /* Release */,
750
- );
751
- defaultConfigurationIsVisible = 0;
752
- defaultConfigurationName = Release;
753
- };
754
- 89DF337529F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUITests" */ = {
755
- isa = XCConfigurationList;
756
- buildConfigurations = (
757
- 89DF337629F813F600A8B124 /* Debug */,
758
- 89DF337729F813F600A8B124 /* Release */,
759
- );
760
- defaultConfigurationIsVisible = 0;
761
- defaultConfigurationName = Release;
762
- };
763
- /* End XCConfigurationList section */
764
- };
765
- rootObject = 89DF335529F813F600A8B124 /* Project object */;
766
- }