react-native-firework-sdk 1.9.0-beta.3 → 2.0.0-beta.5

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 (187) hide show
  1. package/README.md +1 -1
  2. package/android/build.gradle +25 -43
  3. package/android/src/main/AndroidManifest.xml +4 -4
  4. package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +48 -193
  5. package/android/src/main/java/com/fireworksdk/bridge/constants/FWVideoPlayerConstant.kt +7 -0
  6. package/android/src/main/java/com/fireworksdk/bridge/models/FWAdBadgeConfigModel.kt +2 -0
  7. package/android/src/main/java/com/fireworksdk/bridge/models/FWAdBadgeConfigModelDeserializer.kt +24 -0
  8. package/android/src/main/java/com/fireworksdk/bridge/models/FWFontInfoModel.kt +10 -0
  9. package/android/src/main/java/com/fireworksdk/bridge/models/FWFontInfoModelDeserializer.kt +21 -0
  10. package/android/src/main/java/com/fireworksdk/bridge/models/FWProductInfoViewConfiguration.kt +17 -0
  11. package/android/src/main/java/com/fireworksdk/bridge/models/FWProductInfoViewConfigurationDeserializer.kt +35 -0
  12. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModel.kt +11 -0
  13. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelDeserializer.kt +24 -0
  14. package/android/src/main/java/com/fireworksdk/bridge/models/FWSystemTypeface.kt +9 -0
  15. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedConfigModel.kt +13 -13
  16. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedConfigModelDeserializer.kt +70 -0
  17. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedItemDetailsModel.kt +1 -1
  18. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedPropsModel.kt +9 -10
  19. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedPropsModelDeserializer.kt +67 -0
  20. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlaybackDetails.kt +0 -3
  21. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModel.kt +19 -11
  22. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelDeserializer.kt +74 -0
  23. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoShoppingProduct.kt +17 -15
  24. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoShoppingProductDeserializer.kt +120 -0
  25. package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt +4 -130
  26. package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +71 -100
  27. package/android/src/main/java/com/fireworksdk/bridge/reactnative/models/FWNavigatorInterface.kt +2 -0
  28. package/android/src/main/java/com/fireworksdk/bridge/reactnative/models/FWVideoShoppingInterface.kt +1 -1
  29. package/android/src/main/java/com/fireworksdk/bridge/reactnative/models/FireworkSDKInterface.kt +1 -1
  30. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWLiveStreamModule.kt +2 -50
  31. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWNavigatorModule.kt +17 -35
  32. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWVideoShoppingModule.kt +145 -111
  33. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FireworkSDKModule.kt +104 -133
  34. package/android/src/main/java/com/fireworksdk/bridge/reactnative/pages/FWContainerActivity.kt +1 -14
  35. package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/{FWDataUtils.kt → FWDataConvertUtils.kt} +1 -11
  36. package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/FWEventUtils.kt +5 -5
  37. package/android/src/main/java/com/fireworksdk/bridge/utils/FWCommonUtil.kt +23 -0
  38. package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +339 -0
  39. package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +14 -0
  40. package/android/src/main/java/com/fireworksdk/bridge/utils/FWLanguageUtil.kt +10 -12
  41. package/android/src/main/res/layout/fw_bridge_fragment_container.xml +2 -2
  42. package/android/src/main/res/values/colors.xml +2 -2
  43. package/android/src/main/res/values/styles.xml +0 -40
  44. package/ios/Components/StoryBlock.swift +1 -5
  45. package/ios/Components/VideoFeed.swift +17 -32
  46. package/ios/Components/VideoPlayerConfiguration.swift +0 -5
  47. package/ios/FireworkSdk-Bridging-Header.h +0 -6
  48. package/ios/FireworkSdk.xcodeproj/project.pbxproj +208 -374
  49. package/ios/Models/NativeToRN/FireworkEventName.swift +1 -1
  50. package/ios/Models/RNToNative/RCTConvert+FireworkSDKModule.swift +20 -0
  51. package/ios/Modules/FWNavigatorModule/FWNavigatorModule.swift +86 -33
  52. package/ios/Modules/FireworkSDKModule/FireworkSDKModule.m +1 -2
  53. package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +13 -34
  54. package/ios/Modules/FireworkSDKModule/SDKInitOptions.swift +29 -0
  55. package/ios/Utils/{Extensions/DispatchQueue+FWOnce.swift → DispatchQueue+FWOnce.swift} +3 -3
  56. package/ios/Utils/FWSwizzleLoader.m +1 -1
  57. package/ios/Utils/FWSwizzleUtil.swift +9 -17
  58. package/ios/Utils/{Extensions/Swizzle/UINavigationController+FWSwizzle.swift → UINavigationController+FWSwizzle.swift} +8 -6
  59. package/ios/Utils/UIView+ParentViewController.swift +21 -0
  60. package/ios/react_native_firework_sdk.h +0 -1
  61. package/lib/commonjs/FWNavigator.js +8 -41
  62. package/lib/commonjs/FWNavigator.js.map +1 -1
  63. package/lib/commonjs/FireworkSDK.js +50 -77
  64. package/lib/commonjs/FireworkSDK.js.map +1 -1
  65. package/lib/commonjs/LiveStream.js +2 -2
  66. package/lib/commonjs/LiveStream.js.map +1 -1
  67. package/lib/commonjs/VideoShopping.js +3 -38
  68. package/lib/commonjs/VideoShopping.js.map +1 -1
  69. package/lib/commonjs/components/StoryBlock.js +22 -4
  70. package/lib/commonjs/components/StoryBlock.js.map +1 -1
  71. package/lib/commonjs/components/VideoFeed.js +17 -26
  72. package/lib/commonjs/components/VideoFeed.js.map +1 -1
  73. package/lib/commonjs/index.js.map +1 -1
  74. package/lib/commonjs/models/AndroidFontInfo.js +2 -0
  75. package/lib/commonjs/models/FWEventName.js +1 -2
  76. package/lib/commonjs/models/FWEventName.js.map +1 -1
  77. package/lib/commonjs/models/SDKInitOptions.js +2 -0
  78. package/lib/commonjs/modules/FWNavigatorModule.js.map +1 -1
  79. package/lib/commonjs/modules/FireworkSDKModule.js.map +1 -1
  80. package/lib/commonjs/modules/ShoppingModule.js.map +1 -1
  81. package/lib/module/FWNavigator.js +9 -40
  82. package/lib/module/FWNavigator.js.map +1 -1
  83. package/lib/module/FireworkSDK.js +51 -76
  84. package/lib/module/FireworkSDK.js.map +1 -1
  85. package/lib/module/LiveStream.js +2 -2
  86. package/lib/module/LiveStream.js.map +1 -1
  87. package/lib/module/VideoShopping.js +3 -37
  88. package/lib/module/VideoShopping.js.map +1 -1
  89. package/lib/module/components/StoryBlock.js +20 -4
  90. package/lib/module/components/StoryBlock.js.map +1 -1
  91. package/lib/module/components/VideoFeed.js +18 -23
  92. package/lib/module/components/VideoFeed.js.map +1 -1
  93. package/lib/module/index.js.map +1 -1
  94. package/lib/module/models/AndroidFontInfo.js +2 -0
  95. package/lib/module/models/AndroidFontInfo.js.map +1 -0
  96. package/lib/module/models/FWEventName.js +1 -2
  97. package/lib/module/models/FWEventName.js.map +1 -1
  98. package/lib/module/models/SDKInitOptions.js +2 -0
  99. package/lib/module/models/SDKInitOptions.js.map +1 -0
  100. package/lib/module/modules/FWNavigatorModule.js.map +1 -1
  101. package/lib/module/modules/FireworkSDKModule.js +1 -2
  102. package/lib/module/modules/FireworkSDKModule.js.map +1 -1
  103. package/lib/module/modules/ShoppingModule.js.map +1 -1
  104. package/lib/typescript/FWNavigator.d.ts +6 -24
  105. package/lib/typescript/FireworkSDK.d.ts +22 -28
  106. package/lib/typescript/LiveStream.d.ts +2 -2
  107. package/lib/typescript/VideoShopping.d.ts +1 -18
  108. package/lib/typescript/components/StoryBlock.d.ts +9 -2
  109. package/lib/typescript/components/VideoFeed.d.ts +12 -5
  110. package/lib/typescript/index.d.ts +7 -6
  111. package/lib/typescript/models/AndroidFontInfo.d.ts +14 -0
  112. package/lib/typescript/models/FWEventName.d.ts +1 -2
  113. package/lib/typescript/models/FWEvents.d.ts +0 -6
  114. package/lib/typescript/models/SDKInitOptions.d.ts +6 -0
  115. package/lib/typescript/models/VideoFeedConfiguration.d.ts +11 -14
  116. package/lib/typescript/models/VideoPlayerConfiguration.d.ts +1 -6
  117. package/lib/typescript/modules/FWNavigatorModule.d.ts +0 -3
  118. package/lib/typescript/modules/FireworkSDKModule.d.ts +4 -5
  119. package/lib/typescript/modules/ShoppingModule.d.ts +0 -2
  120. package/package.json +1 -1
  121. package/react-native-firework-sdk.podspec +18 -15
  122. package/src/FWNavigator.ts +8 -42
  123. package/src/FireworkSDK.ts +55 -71
  124. package/src/LiveStream.ts +2 -2
  125. package/src/VideoShopping.ts +4 -54
  126. package/src/components/StoryBlock.tsx +25 -4
  127. package/src/components/VideoFeed.tsx +22 -21
  128. package/src/index.ts +5 -11
  129. package/src/models/AndroidFontInfo.ts +14 -0
  130. package/src/models/FWEventName.ts +1 -2
  131. package/src/models/FWEvents.ts +0 -7
  132. package/src/models/SDKInitOptions.ts +7 -0
  133. package/src/models/VideoFeedConfiguration.ts +11 -14
  134. package/src/models/VideoPlayerConfiguration.ts +1 -7
  135. package/src/modules/FWNavigatorModule.ts +0 -1
  136. package/src/modules/FireworkSDKModule.ts +6 -8
  137. package/src/modules/ShoppingModule.ts +0 -5
  138. package/android/src/main/java/com/fireworksdk/bridge/utils/FWGsonUtil.kt +0 -38
  139. package/android/src/main/java/com/fireworksdk/bridge/utils/FWVideoPlayerUtils.kt +0 -123
  140. package/android/src/main/res/layout/fw_bridge_fragment_playlistfeed.xml +0 -18
  141. package/android/src/main/res/layout/fw_bridge_fragment_shoppingcart.xml +0 -8
  142. package/android/src/main/res/layout/fw_bridge_fragment_videofeed.xml +0 -17
  143. package/ios/Utils/AppLanguage/Bundle+FWSwizzle.swift +0 -58
  144. package/ios/Utils/AppLanguage/FWAppLanguageManager.swift +0 -118
  145. package/ios/Utils/AppLanguage/FWLanguageUtil.swift +0 -39
  146. package/ios/Utils/AppLanguage/NumberFormatter+FWSwizzle.swift +0 -25
  147. package/ios/Utils/AppLanguage/UIImageView+FWSwizzle.swift +0 -91
  148. package/ios/Utils/AppLanguage/UILabel+FWSwizzle.swift +0 -98
  149. package/ios/Utils/AppLanguage/UITextField+FWSwizzle.swift +0 -97
  150. package/ios/Utils/AppLanguage/UITextView+FWSwizzle.swift +0 -97
  151. package/ios/Utils/AppLanguage/UIView+FWSwizzle.swift +0 -38
  152. package/ios/Utils/AppLanguage/UIViewController+FWSwizzle.swift +0 -32
  153. package/ios/Utils/AppLanguage/UIWindow+FWSwizzle.swift +0 -26
  154. package/ios/Utils/AppLanguage/URLSession+FWSwizzle.swift +0 -69
  155. package/ios/Utils/Extensions/UIView+FWUIHierarchy.swift +0 -47
  156. package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.h +0 -25
  157. package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.m +0 -75
  158. package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.h +0 -21
  159. package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.m +0 -124
  160. package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.h +0 -11
  161. package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.m +0 -86
  162. package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.h +0 -16
  163. package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.m +0 -55
  164. package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.h +0 -18
  165. package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.m +0 -39
  166. package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.h +0 -54
  167. package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.m +0 -141
  168. package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.h +0 -16
  169. package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.m +0 -20
  170. package/ios/Utils/FWRTL/Classes/Utils/FWRTLDefinitions.h +0 -52
  171. package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.h +0 -19
  172. package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.m +0 -49
  173. package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.h +0 -21
  174. package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.m +0 -38
  175. package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.h +0 -18
  176. package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.m +0 -43
  177. package/ios/Utils/FWSwizzleLoader.swift +0 -13
  178. package/ios/scripts/firework_sdk_pods.rb +0 -3
  179. package/lib/commonjs/models/NewNativeContainerProps.js +0 -2
  180. package/lib/module/models/NewNativeContainerProps.js +0 -2
  181. package/lib/typescript/models/NewNativeContainerProps.d.ts +0 -6
  182. package/src/models/NewNativeContainerProps.ts +0 -4
  183. /package/ios/Utils/{Extensions/String+Color.swift → String+Color.swift} +0 -0
  184. /package/ios/Utils/{Extensions/UIView+Constraints.swift → UIView+Constraints.swift} +0 -0
  185. /package/ios/Utils/{Extensions/UIViewController+AttachChild.swift → UIViewController+AttachChild.swift} +0 -0
  186. /package/lib/commonjs/models/{NewNativeContainerProps.js.map → AndroidFontInfo.js.map} +0 -0
  187. /package/lib/{module/models/NewNativeContainerProps.js.map → commonjs/models/SDKInitOptions.js.map} +0 -0
@@ -7,70 +7,48 @@
7
7
  objects = {
8
8
 
9
9
  /* Begin PBXBuildFile section */
10
- 894FAD7129BAD4C4000FB51A /* UIImage+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1729BAD4C3000FB51A /* UIImage+FWRTL.m */; };
11
- 894FAD7229BAD4C4000FB51A /* NSString+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1829BAD4C3000FB51A /* NSString+FWRTL.m */; };
12
- 894FAD7329BAD4C4000FB51A /* NSObject+FWRTLReloadBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1929BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.m */; };
13
- 894FAD7429BAD4C4000FB51A /* FWRTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1F29BAD4C3000FB51A /* FWRTLManager.m */; };
14
- 894FAD7529BAD4C4000FB51A /* FWRTLRemoteViewControllerAdaptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2229BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.m */; };
15
- 894FAD7629BAD4C4000FB51A /* UIView+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2829BAD4C3000FB51A /* UIView+FWRTL.m */; };
16
- 894FAD7729BAD4C4000FB51A /* FWRTLWhiteListManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2A29BAD4C3000FB51A /* FWRTLWhiteListManager.m */; };
17
- 894FAD7829BAD4C4000FB51A /* UIWindow+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2B29BAD4C3000FB51A /* UIWindow+FWRTL.m */; };
18
- 894FAD7929BAD4C4000FB51A /* UILabel+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2C29BAD4C3000FB51A /* UILabel+FWRTL.m */; };
19
- 894FAD7A29BAD4C4000FB51A /* CALayer+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2D29BAD4C3000FB51A /* CALayer+FWRTL.m */; };
20
- 894FAD7B29BAD4C4000FB51A /* UIView+FWUIHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2F29BAD4C3000FB51A /* UIView+FWUIHierarchy.swift */; };
21
- 894FAD7C29BAD4C4000FB51A /* UIViewController+AttachChild.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3029BAD4C3000FB51A /* UIViewController+AttachChild.swift */; };
22
- 894FAD7D29BAD4C4000FB51A /* UIView+Constraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3129BAD4C3000FB51A /* UIView+Constraints.swift */; };
23
- 894FAD7F29BAD4C4000FB51A /* UINavigationController+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3429BAD4C3000FB51A /* UINavigationController+FWSwizzle.swift */; };
24
- 894FAD8029BAD4C4000FB51A /* String+Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3529BAD4C3000FB51A /* String+Color.swift */; };
25
- 894FAD8129BAD4C4000FB51A /* DispatchQueue+FWOnce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3629BAD4C3000FB51A /* DispatchQueue+FWOnce.swift */; };
26
- 894FAD8229BAD4C4000FB51A /* FWSwizzleLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3729BAD4C3000FB51A /* FWSwizzleLoader.m */; };
27
- 894FAD8329BAD4C4000FB51A /* UITextView+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3929BAD4C3000FB51A /* UITextView+FWSwizzle.swift */; };
28
- 894FAD8429BAD4C4000FB51A /* FWAppLanguageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3A29BAD4C3000FB51A /* FWAppLanguageManager.swift */; };
29
- 894FAD8529BAD4C4000FB51A /* UITextField+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3B29BAD4C3000FB51A /* UITextField+FWSwizzle.swift */; };
30
- 894FAD8629BAD4C4000FB51A /* UIWindow+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3C29BAD4C3000FB51A /* UIWindow+FWSwizzle.swift */; };
31
- 894FAD8729BAD4C4000FB51A /* UILabel+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3D29BAD4C3000FB51A /* UILabel+FWSwizzle.swift */; };
32
- 894FAD8829BAD4C4000FB51A /* FWLanguageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3E29BAD4C3000FB51A /* FWLanguageUtil.swift */; };
33
- 894FAD8929BAD4C4000FB51A /* UIImageView+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3F29BAD4C3000FB51A /* UIImageView+FWSwizzle.swift */; };
34
- 894FAD8A29BAD4C4000FB51A /* NumberFormatter+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4029BAD4C3000FB51A /* NumberFormatter+FWSwizzle.swift */; };
35
- 894FAD8B29BAD4C4000FB51A /* UIViewController+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4129BAD4C3000FB51A /* UIViewController+FWSwizzle.swift */; };
36
- 894FAD8C29BAD4C4000FB51A /* Bundle+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4229BAD4C3000FB51A /* Bundle+FWSwizzle.swift */; };
37
- 894FAD8D29BAD4C4000FB51A /* URLSession+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4329BAD4C3000FB51A /* URLSession+FWSwizzle.swift */; };
38
- 894FAD8E29BAD4C4000FB51A /* FWSwizzleUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4429BAD4C3000FB51A /* FWSwizzleUtil.swift */; };
39
- 894FAD8F29BAD4C4000FB51A /* FWSwizzleLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4529BAD4C3000FB51A /* FWSwizzleLoader.swift */; };
40
- 894FAD9029BAD4C4000FB51A /* FontInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4829BAD4C3000FB51A /* FontInfo.swift */; };
41
- 894FAD9129BAD4C4000FB51A /* RCTConvert+StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4A29BAD4C3000FB51A /* RCTConvert+StoryBlock.swift */; };
42
- 894FAD9229BAD4C4000FB51A /* RCTConvert+FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4B29BAD4C3000FB51A /* RCTConvert+FireworkSDKModule.swift */; };
43
- 894FAD9329BAD4C4000FB51A /* RCTConvert+Shopping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4C29BAD4C3000FB51A /* RCTConvert+Shopping.swift */; };
44
- 894FAD9429BAD4C4000FB51A /* RCTConvert+VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4D29BAD4C3000FB51A /* RCTConvert+VideoFeed.swift */; };
45
- 894FAD9529BAD4C4000FB51A /* FireworkSDK+Json.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4F29BAD4C3000FB51A /* FireworkSDK+Json.swift */; };
46
- 894FAD9629BAD4C4000FB51A /* FireworkEventName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5029BAD4C3000FB51A /* FireworkEventName.swift */; };
47
- 894FAD9729BAD4C4000FB51A /* StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5229BAD4C3000FB51A /* StoryBlock.swift */; };
48
- 894FAD9829BAD4C4000FB51A /* VideoFeedManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5329BAD4C3000FB51A /* VideoFeedManager.swift */; };
49
- 894FAD9929BAD4C4000FB51A /* AdConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5429BAD4C3000FB51A /* AdConfiguration.swift */; };
50
- 894FAD9A29BAD4C4000FB51A /* StoryBlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5529BAD4C3000FB51A /* StoryBlockManager.swift */; };
51
- 894FAD9B29BAD4C4000FB51A /* StoryBlockManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */; };
52
- 894FAD9C29BAD4C4000FB51A /* VideoFeedConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */; };
53
- 894FAD9D29BAD4C4000FB51A /* VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5829BAD4C3000FB51A /* VideoFeed.swift */; };
54
- 894FAD9E29BAD4C4000FB51A /* VideoPlayerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */; };
55
- 894FAD9F29BAD4C4000FB51A /* VideoFeedManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */; };
56
- 894FADA029BAD4C4000FB51A /* FWNavigatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */; };
57
- 894FADA129BAD4C4000FB51A /* FWNavigatorContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */; };
58
- 894FADA229BAD4C4000FB51A /* FWNavigatorModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */; };
59
- 894FADA329BAD4C4000FB51A /* FWNavigatorModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */; };
60
- 894FADA429BAD4C4000FB51A /* ShoppingModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6229BAD4C4000FB51A /* ShoppingModule.m */; };
61
- 894FADA529BAD4C4000FB51A /* FWCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */; };
62
- 894FADA629BAD4C4000FB51A /* ProductInfoViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */; };
63
- 894FADA729BAD4C4000FB51A /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6529BAD4C4000FB51A /* Product.swift */; };
64
- 894FADA829BAD4C4000FB51A /* ShoppingModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */; };
65
- 894FADA929BAD4C4000FB51A /* TrackPurchaseParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6829BAD4C4000FB51A /* TrackPurchaseParameters.swift */; };
66
- 894FADAA29BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6929BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift */; };
67
- 894FADAB29BAD4C4000FB51A /* FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6A29BAD4C4000FB51A /* FireworkSDKModule.swift */; };
68
- 894FADAC29BAD4C4000FB51A /* AdBadgeConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6B29BAD4C4000FB51A /* AdBadgeConfiguration.swift */; };
69
- 894FADAD29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6C29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift */; };
70
- 894FADAE29BAD4C4000FB51A /* FireworkSDKModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6D29BAD4C4000FB51A /* FireworkSDKModule.m */; };
71
- 894FADAF29BAD4C4000FB51A /* LiveStreamModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6F29BAD4C4000FB51A /* LiveStreamModule.swift */; };
72
- 894FADB029BAD4C4000FB51A /* LiveStreamModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */; };
73
- 8966951029BC465600B91A3D /* UIView+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8966950F29BC465600B91A3D /* UIView+FWSwizzle.swift */; };
10
+ 892C397229B82757003BDD99 /* SDKInitOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 892C397129B82757003BDD99 /* SDKInitOptions.swift */; };
11
+ 89335CA628E29D3A00B84BC7 /* TrackPurchaseParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89335CA528E29D3A00B84BC7 /* TrackPurchaseParameters.swift */; };
12
+ 8953CF5E2993E0D200F7413E /* UINavigationController+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8953CF5D2993E0D200F7413E /* UINavigationController+FWSwizzle.swift */; };
13
+ 8953CF602993E3B200F7413E /* FWSwizzleUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8953CF5F2993E3B200F7413E /* FWSwizzleUtil.swift */; };
14
+ 8953CF622993E44E00F7413E /* DispatchQueue+FWOnce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8953CF612993E44E00F7413E /* DispatchQueue+FWOnce.swift */; };
15
+ 8953CF6C2993FAAB00F7413E /* FWSwizzleLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8953CF6B2993FAAB00F7413E /* FWSwizzleLoader.m */; };
16
+ 896A8EB928E3DCCA007E51F8 /* AdConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 896A8EB828E3DCCA007E51F8 /* AdConfiguration.swift */; };
17
+ 8975235E2817DEEE0070EBB6 /* VideoFeedManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523592817DEEE0070EBB6 /* VideoFeedManager.swift */; };
18
+ 8975235F2817DEEE0070EBB6 /* VideoFeedConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975235A2817DEEE0070EBB6 /* VideoFeedConfiguration.swift */; };
19
+ 897523602817DEEE0070EBB6 /* VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975235B2817DEEE0070EBB6 /* VideoFeed.swift */; };
20
+ 897523612817DEEE0070EBB6 /* VideoPlayerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975235C2817DEEE0070EBB6 /* VideoPlayerConfiguration.swift */; };
21
+ 897523622817DEEE0070EBB6 /* VideoFeedManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8975235D2817DEEE0070EBB6 /* VideoFeedManager.m */; };
22
+ 897523872817DEF80070EBB6 /* UIViewController+AttachChild.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523652817DEF80070EBB6 /* UIViewController+AttachChild.swift */; };
23
+ 897523882817DEF80070EBB6 /* UIView+Constraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523662817DEF80070EBB6 /* UIView+Constraints.swift */; };
24
+ 897523892817DEF80070EBB6 /* String+Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523672817DEF80070EBB6 /* String+Color.swift */; };
25
+ 8975238A2817DEF80070EBB6 /* UIView+ParentViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523682817DEF80070EBB6 /* UIView+ParentViewController.swift */; };
26
+ 8975238B2817DEF80070EBB6 /* RCTConvert+FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975236B2817DEF80070EBB6 /* RCTConvert+FireworkSDKModule.swift */; };
27
+ 8975238C2817DEF80070EBB6 /* RCTConvert+Shopping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975236C2817DEF80070EBB6 /* RCTConvert+Shopping.swift */; };
28
+ 8975238D2817DEF80070EBB6 /* RCTConvert+VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975236D2817DEF80070EBB6 /* RCTConvert+VideoFeed.swift */; };
29
+ 8975238E2817DEF80070EBB6 /* FireworkSDK+Json.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975236F2817DEF80070EBB6 /* FireworkSDK+Json.swift */; };
30
+ 8975238F2817DEF80070EBB6 /* FireworkEventName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523702817DEF80070EBB6 /* FireworkEventName.swift */; };
31
+ 897523902817DEF80070EBB6 /* FWNavigatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523732817DEF80070EBB6 /* FWNavigatorProtocol.swift */; };
32
+ 897523912817DEF80070EBB6 /* FWNavigatorContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523742817DEF80070EBB6 /* FWNavigatorContainerViewController.swift */; };
33
+ 897523922817DEF80070EBB6 /* FWNavigatorModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523752817DEF80070EBB6 /* FWNavigatorModule.swift */; };
34
+ 897523932817DEF80070EBB6 /* FWNavigatorModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 897523762817DEF80070EBB6 /* FWNavigatorModule.m */; };
35
+ 897523942817DEF80070EBB6 /* FWCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523782817DEF80070EBB6 /* FWCartViewController.swift */; };
36
+ 897523952817DEF80070EBB6 /* ShoppingModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 897523792817DEF80070EBB6 /* ShoppingModule.m */; };
37
+ 897523962817DEF80070EBB6 /* ProductInfoViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975237A2817DEF80070EBB6 /* ProductInfoViewConfiguration.swift */; };
38
+ 897523972817DEF80070EBB6 /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975237B2817DEF80070EBB6 /* Product.swift */; };
39
+ 897523982817DEF80070EBB6 /* ShoppingModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975237C2817DEF80070EBB6 /* ShoppingModule.swift */; };
40
+ 8975239A2817DEF80070EBB6 /* FireworkSDKModule+EventTracking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8975237F2817DEF80070EBB6 /* FireworkSDKModule+EventTracking.swift */; };
41
+ 8975239B2817DEF80070EBB6 /* FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523802817DEF80070EBB6 /* FireworkSDKModule.swift */; };
42
+ 8975239C2817DEF80070EBB6 /* AdBadgeConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523812817DEF80070EBB6 /* AdBadgeConfiguration.swift */; };
43
+ 8975239D2817DEF80070EBB6 /* FireworkSDKModule+CTA.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523822817DEF80070EBB6 /* FireworkSDKModule+CTA.swift */; };
44
+ 8975239E2817DEF80070EBB6 /* FireworkSDKModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 897523832817DEF80070EBB6 /* FireworkSDKModule.m */; };
45
+ 8975239F2817DEF80070EBB6 /* LiveStreamModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897523852817DEF80070EBB6 /* LiveStreamModule.swift */; };
46
+ 897523A02817DEF80070EBB6 /* LiveStreamModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 897523862817DEF80070EBB6 /* LiveStreamModule.m */; };
47
+ 89D6BBF929ACE2DC00C8AA2A /* FontInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89D6BBF829ACE2DC00C8AA2A /* FontInfo.swift */; };
48
+ 89DF27DD28A53A77003F3CCB /* StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27DA28A53A77003F3CCB /* StoryBlock.swift */; };
49
+ 89DF27DE28A53A77003F3CCB /* StoryBlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27DB28A53A77003F3CCB /* StoryBlockManager.swift */; };
50
+ 89DF27DF28A53A77003F3CCB /* StoryBlockManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27DC28A53A77003F3CCB /* StoryBlockManager.m */; };
51
+ 89DF27E128A53A89003F3CCB /* RCTConvert+StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27E028A53A89003F3CCB /* RCTConvert+StoryBlock.swift */; };
74
52
  /* End PBXBuildFile section */
75
53
 
76
54
  /* Begin PBXCopyFilesBuildPhase section */
@@ -86,85 +64,52 @@
86
64
  /* End PBXCopyFilesBuildPhase section */
87
65
 
88
66
  /* Begin PBXFileReference section */
67
+ 134814201AA4EA6300B7C361 /* libFireworkSdk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFireworkSdk.a; sourceTree = BUILT_PRODUCTS_DIR; };
89
68
  1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FireworkSdk-Bridging-Header.h"; sourceTree = "<group>"; };
90
- 894FAD1329BAD4C3000FB51A /* FWSwizzleLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWSwizzleLoader.h; sourceTree = "<group>"; };
91
- 894FAD1729BAD4C3000FB51A /* UIImage+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+FWRTL.m"; sourceTree = "<group>"; };
92
- 894FAD1829BAD4C3000FB51A /* NSString+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+FWRTL.m"; sourceTree = "<group>"; };
93
- 894FAD1929BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+FWRTLReloadBlock.m"; sourceTree = "<group>"; };
94
- 894FAD1A29BAD4C3000FB51A /* FWRTLDefinitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLDefinitions.h; sourceTree = "<group>"; };
95
- 894FAD1B29BAD4C3000FB51A /* NSString+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+FWRTL.h"; sourceTree = "<group>"; };
96
- 894FAD1C29BAD4C3000FB51A /* UIImage+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+FWRTL.h"; sourceTree = "<group>"; };
97
- 894FAD1D29BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+FWRTLReloadBlock.h"; sourceTree = "<group>"; };
98
- 894FAD1F29BAD4C3000FB51A /* FWRTLManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWRTLManager.m; sourceTree = "<group>"; };
99
- 894FAD2029BAD4C3000FB51A /* FWRTLManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLManager.h; sourceTree = "<group>"; };
100
- 894FAD2229BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWRTLRemoteViewControllerAdaptor.m; sourceTree = "<group>"; };
101
- 894FAD2329BAD4C3000FB51A /* UIView+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+FWRTL.h"; sourceTree = "<group>"; };
102
- 894FAD2429BAD4C3000FB51A /* UIWindow+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+FWRTL.h"; sourceTree = "<group>"; };
103
- 894FAD2529BAD4C3000FB51A /* FWRTLWhiteListManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLWhiteListManager.h; sourceTree = "<group>"; };
104
- 894FAD2629BAD4C3000FB51A /* CALayer+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+FWRTL.h"; sourceTree = "<group>"; };
105
- 894FAD2729BAD4C3000FB51A /* UILabel+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+FWRTL.h"; sourceTree = "<group>"; };
106
- 894FAD2829BAD4C3000FB51A /* UIView+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+FWRTL.m"; sourceTree = "<group>"; };
107
- 894FAD2929BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLRemoteViewControllerAdaptor.h; sourceTree = "<group>"; };
108
- 894FAD2A29BAD4C3000FB51A /* FWRTLWhiteListManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWRTLWhiteListManager.m; sourceTree = "<group>"; };
109
- 894FAD2B29BAD4C3000FB51A /* UIWindow+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+FWRTL.m"; sourceTree = "<group>"; };
110
- 894FAD2C29BAD4C3000FB51A /* UILabel+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+FWRTL.m"; sourceTree = "<group>"; };
111
- 894FAD2D29BAD4C3000FB51A /* CALayer+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+FWRTL.m"; sourceTree = "<group>"; };
112
- 894FAD2F29BAD4C3000FB51A /* UIView+FWUIHierarchy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+FWUIHierarchy.swift"; sourceTree = "<group>"; };
113
- 894FAD3029BAD4C3000FB51A /* UIViewController+AttachChild.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+AttachChild.swift"; sourceTree = "<group>"; };
114
- 894FAD3129BAD4C3000FB51A /* UIView+Constraints.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Constraints.swift"; sourceTree = "<group>"; };
115
- 894FAD3429BAD4C3000FB51A /* UINavigationController+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UINavigationController+FWSwizzle.swift"; sourceTree = "<group>"; };
116
- 894FAD3529BAD4C3000FB51A /* String+Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+Color.swift"; sourceTree = "<group>"; };
117
- 894FAD3629BAD4C3000FB51A /* DispatchQueue+FWOnce.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+FWOnce.swift"; sourceTree = "<group>"; };
118
- 894FAD3729BAD4C3000FB51A /* FWSwizzleLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWSwizzleLoader.m; sourceTree = "<group>"; };
119
- 894FAD3929BAD4C3000FB51A /* UITextView+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextView+FWSwizzle.swift"; sourceTree = "<group>"; };
120
- 894FAD3A29BAD4C3000FB51A /* FWAppLanguageManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWAppLanguageManager.swift; sourceTree = "<group>"; };
121
- 894FAD3B29BAD4C3000FB51A /* UITextField+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextField+FWSwizzle.swift"; sourceTree = "<group>"; };
122
- 894FAD3C29BAD4C3000FB51A /* UIWindow+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIWindow+FWSwizzle.swift"; sourceTree = "<group>"; };
123
- 894FAD3D29BAD4C3000FB51A /* UILabel+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+FWSwizzle.swift"; sourceTree = "<group>"; };
124
- 894FAD3E29BAD4C3000FB51A /* FWLanguageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWLanguageUtil.swift; sourceTree = "<group>"; };
125
- 894FAD3F29BAD4C3000FB51A /* UIImageView+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+FWSwizzle.swift"; sourceTree = "<group>"; };
126
- 894FAD4029BAD4C3000FB51A /* NumberFormatter+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NumberFormatter+FWSwizzle.swift"; sourceTree = "<group>"; };
127
- 894FAD4129BAD4C3000FB51A /* UIViewController+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+FWSwizzle.swift"; sourceTree = "<group>"; };
128
- 894FAD4229BAD4C3000FB51A /* Bundle+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Bundle+FWSwizzle.swift"; sourceTree = "<group>"; };
129
- 894FAD4329BAD4C3000FB51A /* URLSession+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "URLSession+FWSwizzle.swift"; sourceTree = "<group>"; };
130
- 894FAD4429BAD4C3000FB51A /* FWSwizzleUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWSwizzleUtil.swift; sourceTree = "<group>"; };
131
- 894FAD4529BAD4C3000FB51A /* FWSwizzleLoader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWSwizzleLoader.swift; sourceTree = "<group>"; };
132
- 894FAD4829BAD4C3000FB51A /* FontInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontInfo.swift; sourceTree = "<group>"; };
133
- 894FAD4A29BAD4C3000FB51A /* RCTConvert+StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+StoryBlock.swift"; sourceTree = "<group>"; };
134
- 894FAD4B29BAD4C3000FB51A /* RCTConvert+FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+FireworkSDKModule.swift"; sourceTree = "<group>"; };
135
- 894FAD4C29BAD4C3000FB51A /* RCTConvert+Shopping.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+Shopping.swift"; sourceTree = "<group>"; };
136
- 894FAD4D29BAD4C3000FB51A /* RCTConvert+VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+VideoFeed.swift"; sourceTree = "<group>"; };
137
- 894FAD4F29BAD4C3000FB51A /* FireworkSDK+Json.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDK+Json.swift"; sourceTree = "<group>"; };
138
- 894FAD5029BAD4C3000FB51A /* FireworkEventName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkEventName.swift; sourceTree = "<group>"; };
139
- 894FAD5229BAD4C3000FB51A /* StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlock.swift; sourceTree = "<group>"; };
140
- 894FAD5329BAD4C3000FB51A /* VideoFeedManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedManager.swift; sourceTree = "<group>"; };
141
- 894FAD5429BAD4C3000FB51A /* AdConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdConfiguration.swift; sourceTree = "<group>"; };
142
- 894FAD5529BAD4C3000FB51A /* StoryBlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlockManager.swift; sourceTree = "<group>"; };
143
- 894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoryBlockManager.m; sourceTree = "<group>"; };
144
- 894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedConfiguration.swift; sourceTree = "<group>"; };
145
- 894FAD5829BAD4C3000FB51A /* VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeed.swift; sourceTree = "<group>"; };
146
- 894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoPlayerConfiguration.swift; sourceTree = "<group>"; };
147
- 894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoFeedManager.m; sourceTree = "<group>"; };
148
- 894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorProtocol.swift; sourceTree = "<group>"; };
149
- 894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorContainerViewController.swift; sourceTree = "<group>"; };
150
- 894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorModule.swift; sourceTree = "<group>"; };
151
- 894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWNavigatorModule.m; sourceTree = "<group>"; };
152
- 894FAD6229BAD4C4000FB51A /* ShoppingModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingModule.m; sourceTree = "<group>"; };
153
- 894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWCartViewController.swift; sourceTree = "<group>"; };
154
- 894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductInfoViewConfiguration.swift; sourceTree = "<group>"; };
155
- 894FAD6529BAD4C4000FB51A /* Product.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = "<group>"; };
156
- 894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingModule.swift; sourceTree = "<group>"; };
157
- 894FAD6829BAD4C4000FB51A /* TrackPurchaseParameters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TrackPurchaseParameters.swift; sourceTree = "<group>"; };
158
- 894FAD6929BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+EventTracking.swift"; sourceTree = "<group>"; };
159
- 894FAD6A29BAD4C4000FB51A /* FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkSDKModule.swift; sourceTree = "<group>"; };
160
- 894FAD6B29BAD4C4000FB51A /* AdBadgeConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdBadgeConfiguration.swift; sourceTree = "<group>"; };
161
- 894FAD6C29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+CTA.swift"; sourceTree = "<group>"; };
162
- 894FAD6D29BAD4C4000FB51A /* FireworkSDKModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FireworkSDKModule.m; sourceTree = "<group>"; };
163
- 894FAD6F29BAD4C4000FB51A /* LiveStreamModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LiveStreamModule.swift; sourceTree = "<group>"; };
164
- 894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveStreamModule.m; sourceTree = "<group>"; };
165
- 894FADB229BAD571000FB51A /* libFireworkSdk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFireworkSdk.a; sourceTree = BUILT_PRODUCTS_DIR; };
166
- 8966950F29BC465600B91A3D /* UIView+FWSwizzle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+FWSwizzle.swift"; sourceTree = "<group>"; };
69
+ 892C397129B82757003BDD99 /* SDKInitOptions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SDKInitOptions.swift; sourceTree = "<group>"; };
70
+ 89335CA528E29D3A00B84BC7 /* TrackPurchaseParameters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TrackPurchaseParameters.swift; sourceTree = "<group>"; };
71
+ 8953CF5D2993E0D200F7413E /* UINavigationController+FWSwizzle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UINavigationController+FWSwizzle.swift"; sourceTree = "<group>"; };
72
+ 8953CF5F2993E3B200F7413E /* FWSwizzleUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWSwizzleUtil.swift; sourceTree = "<group>"; };
73
+ 8953CF612993E44E00F7413E /* DispatchQueue+FWOnce.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+FWOnce.swift"; sourceTree = "<group>"; };
74
+ 8953CF6A2993FAAB00F7413E /* FWSwizzleLoader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FWSwizzleLoader.h; sourceTree = "<group>"; };
75
+ 8953CF6B2993FAAB00F7413E /* FWSwizzleLoader.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FWSwizzleLoader.m; sourceTree = "<group>"; };
76
+ 896A8EB828E3DCCA007E51F8 /* AdConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdConfiguration.swift; sourceTree = "<group>"; };
77
+ 897523592817DEEE0070EBB6 /* VideoFeedManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedManager.swift; sourceTree = "<group>"; };
78
+ 8975235A2817DEEE0070EBB6 /* VideoFeedConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedConfiguration.swift; sourceTree = "<group>"; };
79
+ 8975235B2817DEEE0070EBB6 /* VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeed.swift; sourceTree = "<group>"; };
80
+ 8975235C2817DEEE0070EBB6 /* VideoPlayerConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoPlayerConfiguration.swift; sourceTree = "<group>"; };
81
+ 8975235D2817DEEE0070EBB6 /* VideoFeedManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoFeedManager.m; sourceTree = "<group>"; };
167
82
  897523632817DEF80070EBB6 /* react_native_firework_sdk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = react_native_firework_sdk.h; sourceTree = "<group>"; };
83
+ 897523652817DEF80070EBB6 /* UIViewController+AttachChild.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+AttachChild.swift"; sourceTree = "<group>"; };
84
+ 897523662817DEF80070EBB6 /* UIView+Constraints.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Constraints.swift"; sourceTree = "<group>"; };
85
+ 897523672817DEF80070EBB6 /* String+Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+Color.swift"; sourceTree = "<group>"; };
86
+ 897523682817DEF80070EBB6 /* UIView+ParentViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+ParentViewController.swift"; sourceTree = "<group>"; };
87
+ 8975236B2817DEF80070EBB6 /* RCTConvert+FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+FireworkSDKModule.swift"; sourceTree = "<group>"; };
88
+ 8975236C2817DEF80070EBB6 /* RCTConvert+Shopping.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+Shopping.swift"; sourceTree = "<group>"; };
89
+ 8975236D2817DEF80070EBB6 /* RCTConvert+VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+VideoFeed.swift"; sourceTree = "<group>"; };
90
+ 8975236F2817DEF80070EBB6 /* FireworkSDK+Json.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDK+Json.swift"; sourceTree = "<group>"; };
91
+ 897523702817DEF80070EBB6 /* FireworkEventName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkEventName.swift; sourceTree = "<group>"; };
92
+ 897523732817DEF80070EBB6 /* FWNavigatorProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorProtocol.swift; sourceTree = "<group>"; };
93
+ 897523742817DEF80070EBB6 /* FWNavigatorContainerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorContainerViewController.swift; sourceTree = "<group>"; };
94
+ 897523752817DEF80070EBB6 /* FWNavigatorModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorModule.swift; sourceTree = "<group>"; };
95
+ 897523762817DEF80070EBB6 /* FWNavigatorModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWNavigatorModule.m; sourceTree = "<group>"; };
96
+ 897523782817DEF80070EBB6 /* FWCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWCartViewController.swift; sourceTree = "<group>"; };
97
+ 897523792817DEF80070EBB6 /* ShoppingModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingModule.m; sourceTree = "<group>"; };
98
+ 8975237A2817DEF80070EBB6 /* ProductInfoViewConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductInfoViewConfiguration.swift; sourceTree = "<group>"; };
99
+ 8975237B2817DEF80070EBB6 /* Product.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = "<group>"; };
100
+ 8975237C2817DEF80070EBB6 /* ShoppingModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingModule.swift; sourceTree = "<group>"; };
101
+ 8975237F2817DEF80070EBB6 /* FireworkSDKModule+EventTracking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+EventTracking.swift"; sourceTree = "<group>"; };
102
+ 897523802817DEF80070EBB6 /* FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkSDKModule.swift; sourceTree = "<group>"; };
103
+ 897523812817DEF80070EBB6 /* AdBadgeConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdBadgeConfiguration.swift; sourceTree = "<group>"; };
104
+ 897523822817DEF80070EBB6 /* FireworkSDKModule+CTA.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+CTA.swift"; sourceTree = "<group>"; };
105
+ 897523832817DEF80070EBB6 /* FireworkSDKModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FireworkSDKModule.m; sourceTree = "<group>"; };
106
+ 897523852817DEF80070EBB6 /* LiveStreamModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LiveStreamModule.swift; sourceTree = "<group>"; };
107
+ 897523862817DEF80070EBB6 /* LiveStreamModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveStreamModule.m; sourceTree = "<group>"; };
108
+ 89D6BBF829ACE2DC00C8AA2A /* FontInfo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FontInfo.swift; sourceTree = "<group>"; };
109
+ 89DF27DA28A53A77003F3CCB /* StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlock.swift; sourceTree = "<group>"; };
110
+ 89DF27DB28A53A77003F3CCB /* StoryBlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlockManager.swift; sourceTree = "<group>"; };
111
+ 89DF27DC28A53A77003F3CCB /* StoryBlockManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoryBlockManager.m; sourceTree = "<group>"; };
112
+ 89DF27E028A53A89003F3CCB /* RCTConvert+StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+StoryBlock.swift"; sourceTree = "<group>"; };
168
113
  /* End PBXFileReference section */
169
114
 
170
115
  /* Begin PBXFrameworksBuildPhase section */
@@ -178,243 +123,154 @@
178
123
  /* End PBXFrameworksBuildPhase section */
179
124
 
180
125
  /* Begin PBXGroup section */
181
- 58B511D21A9E6C8500147676 = {
182
- isa = PBXGroup;
183
- children = (
184
- 894FAD5129BAD4C3000FB51A /* Components */,
185
- 894FAD4629BAD4C3000FB51A /* Models */,
186
- 894FAD5B29BAD4C3000FB51A /* Modules */,
187
- 894FAD1229BAD4C3000FB51A /* Utils */,
188
- 1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */,
189
- 897523632817DEF80070EBB6 /* react_native_firework_sdk.h */,
190
- 894FADB229BAD571000FB51A /* libFireworkSdk.a */,
191
- );
192
- sourceTree = "<group>";
193
- };
194
- 894FAD1229BAD4C3000FB51A /* Utils */ = {
126
+ 134814211AA4EA7D00B7C361 /* Products */ = {
195
127
  isa = PBXGroup;
196
128
  children = (
197
- 894FAD1329BAD4C3000FB51A /* FWSwizzleLoader.h */,
198
- 894FAD1429BAD4C3000FB51A /* FWRTL */,
199
- 894FAD2E29BAD4C3000FB51A /* Extensions */,
200
- 894FAD3729BAD4C3000FB51A /* FWSwizzleLoader.m */,
201
- 894FAD3829BAD4C3000FB51A /* AppLanguage */,
202
- 894FAD4429BAD4C3000FB51A /* FWSwizzleUtil.swift */,
203
- 894FAD4529BAD4C3000FB51A /* FWSwizzleLoader.swift */,
129
+ 134814201AA4EA6300B7C361 /* libFireworkSdk.a */,
204
130
  );
205
- path = Utils;
131
+ name = Products;
206
132
  sourceTree = "<group>";
207
133
  };
208
- 894FAD1429BAD4C3000FB51A /* FWRTL */ = {
134
+ 58B511D21A9E6C8500147676 = {
209
135
  isa = PBXGroup;
210
136
  children = (
211
- 894FAD1529BAD4C3000FB51A /* Classes */,
137
+ 1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */,
138
+ 897523632817DEF80070EBB6 /* react_native_firework_sdk.h */,
139
+ 897523582817DEEE0070EBB6 /* Components */,
140
+ 897523692817DEF80070EBB6 /* Models */,
141
+ 897523712817DEF80070EBB6 /* Modules */,
142
+ 134814211AA4EA7D00B7C361 /* Products */,
143
+ 897523642817DEF80070EBB6 /* Utils */,
212
144
  );
213
- path = FWRTL;
214
145
  sourceTree = "<group>";
215
146
  };
216
- 894FAD1529BAD4C3000FB51A /* Classes */ = {
147
+ 897523582817DEEE0070EBB6 /* Components */ = {
217
148
  isa = PBXGroup;
218
149
  children = (
219
- 894FAD1629BAD4C3000FB51A /* Utils */,
220
- 894FAD1E29BAD4C3000FB51A /* Manager */,
221
- 894FAD2129BAD4C3000FB51A /* UICategories */,
150
+ 896A8EB828E3DCCA007E51F8 /* AdConfiguration.swift */,
151
+ 89DF27DA28A53A77003F3CCB /* StoryBlock.swift */,
152
+ 89DF27DC28A53A77003F3CCB /* StoryBlockManager.m */,
153
+ 89DF27DB28A53A77003F3CCB /* StoryBlockManager.swift */,
154
+ 8975235B2817DEEE0070EBB6 /* VideoFeed.swift */,
155
+ 8975235A2817DEEE0070EBB6 /* VideoFeedConfiguration.swift */,
156
+ 8975235D2817DEEE0070EBB6 /* VideoFeedManager.m */,
157
+ 897523592817DEEE0070EBB6 /* VideoFeedManager.swift */,
158
+ 8975235C2817DEEE0070EBB6 /* VideoPlayerConfiguration.swift */,
222
159
  );
223
- path = Classes;
160
+ path = Components;
224
161
  sourceTree = "<group>";
225
162
  };
226
- 894FAD1629BAD4C3000FB51A /* Utils */ = {
163
+ 897523642817DEF80070EBB6 /* Utils */ = {
227
164
  isa = PBXGroup;
228
165
  children = (
229
- 894FAD1729BAD4C3000FB51A /* UIImage+FWRTL.m */,
230
- 894FAD1829BAD4C3000FB51A /* NSString+FWRTL.m */,
231
- 894FAD1929BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.m */,
232
- 894FAD1A29BAD4C3000FB51A /* FWRTLDefinitions.h */,
233
- 894FAD1B29BAD4C3000FB51A /* NSString+FWRTL.h */,
234
- 894FAD1C29BAD4C3000FB51A /* UIImage+FWRTL.h */,
235
- 894FAD1D29BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.h */,
166
+ 8953CF612993E44E00F7413E /* DispatchQueue+FWOnce.swift */,
167
+ 8953CF5F2993E3B200F7413E /* FWSwizzleUtil.swift */,
168
+ 897523652817DEF80070EBB6 /* UIViewController+AttachChild.swift */,
169
+ 897523662817DEF80070EBB6 /* UIView+Constraints.swift */,
170
+ 897523672817DEF80070EBB6 /* String+Color.swift */,
171
+ 897523682817DEF80070EBB6 /* UIView+ParentViewController.swift */,
172
+ 8953CF5D2993E0D200F7413E /* UINavigationController+FWSwizzle.swift */,
173
+ 8953CF6A2993FAAB00F7413E /* FWSwizzleLoader.h */,
174
+ 8953CF6B2993FAAB00F7413E /* FWSwizzleLoader.m */,
236
175
  );
237
176
  path = Utils;
238
177
  sourceTree = "<group>";
239
178
  };
240
- 894FAD1E29BAD4C3000FB51A /* Manager */ = {
241
- isa = PBXGroup;
242
- children = (
243
- 894FAD1F29BAD4C3000FB51A /* FWRTLManager.m */,
244
- 894FAD2029BAD4C3000FB51A /* FWRTLManager.h */,
245
- );
246
- path = Manager;
247
- sourceTree = "<group>";
248
- };
249
- 894FAD2129BAD4C3000FB51A /* UICategories */ = {
250
- isa = PBXGroup;
251
- children = (
252
- 894FAD2229BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.m */,
253
- 894FAD2329BAD4C3000FB51A /* UIView+FWRTL.h */,
254
- 894FAD2429BAD4C3000FB51A /* UIWindow+FWRTL.h */,
255
- 894FAD2529BAD4C3000FB51A /* FWRTLWhiteListManager.h */,
256
- 894FAD2629BAD4C3000FB51A /* CALayer+FWRTL.h */,
257
- 894FAD2729BAD4C3000FB51A /* UILabel+FWRTL.h */,
258
- 894FAD2829BAD4C3000FB51A /* UIView+FWRTL.m */,
259
- 894FAD2929BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.h */,
260
- 894FAD2A29BAD4C3000FB51A /* FWRTLWhiteListManager.m */,
261
- 894FAD2B29BAD4C3000FB51A /* UIWindow+FWRTL.m */,
262
- 894FAD2C29BAD4C3000FB51A /* UILabel+FWRTL.m */,
263
- 894FAD2D29BAD4C3000FB51A /* CALayer+FWRTL.m */,
264
- );
265
- path = UICategories;
266
- sourceTree = "<group>";
267
- };
268
- 894FAD2E29BAD4C3000FB51A /* Extensions */ = {
269
- isa = PBXGroup;
270
- children = (
271
- 894FAD2F29BAD4C3000FB51A /* UIView+FWUIHierarchy.swift */,
272
- 894FAD3029BAD4C3000FB51A /* UIViewController+AttachChild.swift */,
273
- 894FAD3129BAD4C3000FB51A /* UIView+Constraints.swift */,
274
- 894FAD3229BAD4C3000FB51A /* Swizzle */,
275
- 894FAD3529BAD4C3000FB51A /* String+Color.swift */,
276
- 894FAD3629BAD4C3000FB51A /* DispatchQueue+FWOnce.swift */,
277
- );
278
- path = Extensions;
279
- sourceTree = "<group>";
280
- };
281
- 894FAD3229BAD4C3000FB51A /* Swizzle */ = {
179
+ 897523692817DEF80070EBB6 /* Models */ = {
282
180
  isa = PBXGroup;
283
181
  children = (
284
- 894FAD3429BAD4C3000FB51A /* UINavigationController+FWSwizzle.swift */,
285
- );
286
- path = Swizzle;
287
- sourceTree = "<group>";
288
- };
289
- 894FAD3829BAD4C3000FB51A /* AppLanguage */ = {
290
- isa = PBXGroup;
291
- children = (
292
- 894FAD3929BAD4C3000FB51A /* UITextView+FWSwizzle.swift */,
293
- 894FAD3A29BAD4C3000FB51A /* FWAppLanguageManager.swift */,
294
- 894FAD3B29BAD4C3000FB51A /* UITextField+FWSwizzle.swift */,
295
- 894FAD3C29BAD4C3000FB51A /* UIWindow+FWSwizzle.swift */,
296
- 894FAD3D29BAD4C3000FB51A /* UILabel+FWSwizzle.swift */,
297
- 894FAD3E29BAD4C3000FB51A /* FWLanguageUtil.swift */,
298
- 894FAD3F29BAD4C3000FB51A /* UIImageView+FWSwizzle.swift */,
299
- 894FAD4029BAD4C3000FB51A /* NumberFormatter+FWSwizzle.swift */,
300
- 894FAD4129BAD4C3000FB51A /* UIViewController+FWSwizzle.swift */,
301
- 894FAD4229BAD4C3000FB51A /* Bundle+FWSwizzle.swift */,
302
- 894FAD4329BAD4C3000FB51A /* URLSession+FWSwizzle.swift */,
303
- 8966950F29BC465600B91A3D /* UIView+FWSwizzle.swift */,
304
- );
305
- path = AppLanguage;
306
- sourceTree = "<group>";
307
- };
308
- 894FAD4629BAD4C3000FB51A /* Models */ = {
309
- isa = PBXGroup;
310
- children = (
311
- 894FAD4729BAD4C3000FB51A /* Common */,
312
- 894FAD4929BAD4C3000FB51A /* RNToNative */,
313
- 894FAD4E29BAD4C3000FB51A /* NativeToRN */,
182
+ 89D6BBF729ACE28300C8AA2A /* Common */,
183
+ 8975236A2817DEF80070EBB6 /* RNToNative */,
184
+ 8975236E2817DEF80070EBB6 /* NativeToRN */,
314
185
  );
315
186
  path = Models;
316
187
  sourceTree = "<group>";
317
188
  };
318
- 894FAD4729BAD4C3000FB51A /* Common */ = {
319
- isa = PBXGroup;
320
- children = (
321
- 894FAD4829BAD4C3000FB51A /* FontInfo.swift */,
322
- );
323
- path = Common;
324
- sourceTree = "<group>";
325
- };
326
- 894FAD4929BAD4C3000FB51A /* RNToNative */ = {
189
+ 8975236A2817DEF80070EBB6 /* RNToNative */ = {
327
190
  isa = PBXGroup;
328
191
  children = (
329
- 894FAD4A29BAD4C3000FB51A /* RCTConvert+StoryBlock.swift */,
330
- 894FAD4B29BAD4C3000FB51A /* RCTConvert+FireworkSDKModule.swift */,
331
- 894FAD4C29BAD4C3000FB51A /* RCTConvert+Shopping.swift */,
332
- 894FAD4D29BAD4C3000FB51A /* RCTConvert+VideoFeed.swift */,
192
+ 89DF27E028A53A89003F3CCB /* RCTConvert+StoryBlock.swift */,
193
+ 8975236B2817DEF80070EBB6 /* RCTConvert+FireworkSDKModule.swift */,
194
+ 8975236C2817DEF80070EBB6 /* RCTConvert+Shopping.swift */,
195
+ 8975236D2817DEF80070EBB6 /* RCTConvert+VideoFeed.swift */,
333
196
  );
334
197
  path = RNToNative;
335
198
  sourceTree = "<group>";
336
199
  };
337
- 894FAD4E29BAD4C3000FB51A /* NativeToRN */ = {
200
+ 8975236E2817DEF80070EBB6 /* NativeToRN */ = {
338
201
  isa = PBXGroup;
339
202
  children = (
340
- 894FAD4F29BAD4C3000FB51A /* FireworkSDK+Json.swift */,
341
- 894FAD5029BAD4C3000FB51A /* FireworkEventName.swift */,
203
+ 8975236F2817DEF80070EBB6 /* FireworkSDK+Json.swift */,
204
+ 897523702817DEF80070EBB6 /* FireworkEventName.swift */,
342
205
  );
343
206
  path = NativeToRN;
344
207
  sourceTree = "<group>";
345
208
  };
346
- 894FAD5129BAD4C3000FB51A /* Components */ = {
347
- isa = PBXGroup;
348
- children = (
349
- 894FAD5229BAD4C3000FB51A /* StoryBlock.swift */,
350
- 894FAD5329BAD4C3000FB51A /* VideoFeedManager.swift */,
351
- 894FAD5429BAD4C3000FB51A /* AdConfiguration.swift */,
352
- 894FAD5529BAD4C3000FB51A /* StoryBlockManager.swift */,
353
- 894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */,
354
- 894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */,
355
- 894FAD5829BAD4C3000FB51A /* VideoFeed.swift */,
356
- 894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */,
357
- 894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */,
358
- );
359
- path = Components;
360
- sourceTree = "<group>";
361
- };
362
- 894FAD5B29BAD4C3000FB51A /* Modules */ = {
209
+ 897523712817DEF80070EBB6 /* Modules */ = {
363
210
  isa = PBXGroup;
364
211
  children = (
365
- 894FAD5C29BAD4C3000FB51A /* FWNavigatorModule */,
366
- 894FAD6129BAD4C4000FB51A /* Shopping */,
367
- 894FAD6729BAD4C4000FB51A /* FireworkSDKModule */,
368
- 894FAD6E29BAD4C4000FB51A /* LiveStream */,
212
+ 897523722817DEF80070EBB6 /* FWNavigatorModule */,
213
+ 897523772817DEF80070EBB6 /* Shopping */,
214
+ 8975237D2817DEF80070EBB6 /* FireworkSDKModule */,
215
+ 897523842817DEF80070EBB6 /* LiveStream */,
369
216
  );
370
217
  path = Modules;
371
218
  sourceTree = "<group>";
372
219
  };
373
- 894FAD5C29BAD4C3000FB51A /* FWNavigatorModule */ = {
220
+ 897523722817DEF80070EBB6 /* FWNavigatorModule */ = {
374
221
  isa = PBXGroup;
375
222
  children = (
376
- 894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */,
377
- 894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */,
378
- 894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */,
379
- 894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */,
223
+ 897523732817DEF80070EBB6 /* FWNavigatorProtocol.swift */,
224
+ 897523742817DEF80070EBB6 /* FWNavigatorContainerViewController.swift */,
225
+ 897523752817DEF80070EBB6 /* FWNavigatorModule.swift */,
226
+ 897523762817DEF80070EBB6 /* FWNavigatorModule.m */,
380
227
  );
381
228
  path = FWNavigatorModule;
382
229
  sourceTree = "<group>";
383
230
  };
384
- 894FAD6129BAD4C4000FB51A /* Shopping */ = {
231
+ 897523772817DEF80070EBB6 /* Shopping */ = {
385
232
  isa = PBXGroup;
386
233
  children = (
387
- 894FAD6229BAD4C4000FB51A /* ShoppingModule.m */,
388
- 894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */,
389
- 894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */,
390
- 894FAD6529BAD4C4000FB51A /* Product.swift */,
391
- 894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */,
234
+ 897523782817DEF80070EBB6 /* FWCartViewController.swift */,
235
+ 897523792817DEF80070EBB6 /* ShoppingModule.m */,
236
+ 8975237A2817DEF80070EBB6 /* ProductInfoViewConfiguration.swift */,
237
+ 8975237B2817DEF80070EBB6 /* Product.swift */,
238
+ 8975237C2817DEF80070EBB6 /* ShoppingModule.swift */,
392
239
  );
393
240
  path = Shopping;
394
241
  sourceTree = "<group>";
395
242
  };
396
- 894FAD6729BAD4C4000FB51A /* FireworkSDKModule */ = {
243
+ 8975237D2817DEF80070EBB6 /* FireworkSDKModule */ = {
397
244
  isa = PBXGroup;
398
245
  children = (
399
- 894FAD6829BAD4C4000FB51A /* TrackPurchaseParameters.swift */,
400
- 894FAD6929BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift */,
401
- 894FAD6A29BAD4C4000FB51A /* FireworkSDKModule.swift */,
402
- 894FAD6B29BAD4C4000FB51A /* AdBadgeConfiguration.swift */,
403
- 894FAD6C29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift */,
404
- 894FAD6D29BAD4C4000FB51A /* FireworkSDKModule.m */,
246
+ 89335CA528E29D3A00B84BC7 /* TrackPurchaseParameters.swift */,
247
+ 8975237F2817DEF80070EBB6 /* FireworkSDKModule+EventTracking.swift */,
248
+ 897523802817DEF80070EBB6 /* FireworkSDKModule.swift */,
249
+ 897523812817DEF80070EBB6 /* AdBadgeConfiguration.swift */,
250
+ 897523822817DEF80070EBB6 /* FireworkSDKModule+CTA.swift */,
251
+ 897523832817DEF80070EBB6 /* FireworkSDKModule.m */,
252
+ 892C397129B82757003BDD99 /* SDKInitOptions.swift */,
405
253
  );
406
254
  path = FireworkSDKModule;
407
255
  sourceTree = "<group>";
408
256
  };
409
- 894FAD6E29BAD4C4000FB51A /* LiveStream */ = {
257
+ 897523842817DEF80070EBB6 /* LiveStream */ = {
410
258
  isa = PBXGroup;
411
259
  children = (
412
- 894FAD6F29BAD4C4000FB51A /* LiveStreamModule.swift */,
413
- 894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */,
260
+ 897523852817DEF80070EBB6 /* LiveStreamModule.swift */,
261
+ 897523862817DEF80070EBB6 /* LiveStreamModule.m */,
414
262
  );
415
263
  path = LiveStream;
416
264
  sourceTree = "<group>";
417
265
  };
266
+ 89D6BBF729ACE28300C8AA2A /* Common */ = {
267
+ isa = PBXGroup;
268
+ children = (
269
+ 89D6BBF829ACE2DC00C8AA2A /* FontInfo.swift */,
270
+ );
271
+ path = Common;
272
+ sourceTree = "<group>";
273
+ };
418
274
  /* End PBXGroup section */
419
275
 
420
276
  /* Begin PBXNativeTarget section */
@@ -432,7 +288,7 @@
432
288
  );
433
289
  name = FireworkSdk;
434
290
  productName = RCTDataManager;
435
- productReference = 894FADB229BAD571000FB51A /* libFireworkSdk.a */;
291
+ productReference = 134814201AA4EA6300B7C361 /* libFireworkSdk.a */;
436
292
  productType = "com.apple.product-type.library.static";
437
293
  };
438
294
  /* End PBXNativeTarget section */
@@ -472,70 +328,48 @@
472
328
  isa = PBXSourcesBuildPhase;
473
329
  buildActionMask = 2147483647;
474
330
  files = (
475
- 894FAD9629BAD4C4000FB51A /* FireworkEventName.swift in Sources */,
476
- 894FAD7629BAD4C4000FB51A /* UIView+FWRTL.m in Sources */,
477
- 894FAD7129BAD4C4000FB51A /* UIImage+FWRTL.m in Sources */,
478
- 894FAD7C29BAD4C4000FB51A /* UIViewController+AttachChild.swift in Sources */,
479
- 894FAD8729BAD4C4000FB51A /* UILabel+FWSwizzle.swift in Sources */,
480
- 894FAD8529BAD4C4000FB51A /* UITextField+FWSwizzle.swift in Sources */,
481
- 894FAD7D29BAD4C4000FB51A /* UIView+Constraints.swift in Sources */,
482
- 894FAD9129BAD4C4000FB51A /* RCTConvert+StoryBlock.swift in Sources */,
483
- 894FAD8629BAD4C4000FB51A /* UIWindow+FWSwizzle.swift in Sources */,
484
- 894FADAE29BAD4C4000FB51A /* FireworkSDKModule.m in Sources */,
485
- 894FADAA29BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift in Sources */,
486
- 894FAD8F29BAD4C4000FB51A /* FWSwizzleLoader.swift in Sources */,
487
- 894FAD8229BAD4C4000FB51A /* FWSwizzleLoader.m in Sources */,
488
- 894FAD8129BAD4C4000FB51A /* DispatchQueue+FWOnce.swift in Sources */,
489
- 894FAD9B29BAD4C4000FB51A /* StoryBlockManager.m in Sources */,
490
- 894FADB029BAD4C4000FB51A /* LiveStreamModule.m in Sources */,
491
- 894FADA829BAD4C4000FB51A /* ShoppingModule.swift in Sources */,
492
- 894FAD7B29BAD4C4000FB51A /* UIView+FWUIHierarchy.swift in Sources */,
493
- 894FADA029BAD4C4000FB51A /* FWNavigatorProtocol.swift in Sources */,
494
- 894FAD9929BAD4C4000FB51A /* AdConfiguration.swift in Sources */,
495
- 894FAD9D29BAD4C4000FB51A /* VideoFeed.swift in Sources */,
496
- 894FAD9729BAD4C4000FB51A /* StoryBlock.swift in Sources */,
497
- 894FAD9329BAD4C4000FB51A /* RCTConvert+Shopping.swift in Sources */,
498
- 894FAD9029BAD4C4000FB51A /* FontInfo.swift in Sources */,
499
- 894FAD7929BAD4C4000FB51A /* UILabel+FWRTL.m in Sources */,
500
- 894FAD7329BAD4C4000FB51A /* NSObject+FWRTLReloadBlock.m in Sources */,
501
- 894FAD7829BAD4C4000FB51A /* UIWindow+FWRTL.m in Sources */,
502
- 894FAD7A29BAD4C4000FB51A /* CALayer+FWRTL.m in Sources */,
503
- 894FAD7529BAD4C4000FB51A /* FWRTLRemoteViewControllerAdaptor.m in Sources */,
504
- 894FAD7229BAD4C4000FB51A /* NSString+FWRTL.m in Sources */,
505
- 894FADAC29BAD4C4000FB51A /* AdBadgeConfiguration.swift in Sources */,
506
- 894FADA729BAD4C4000FB51A /* Product.swift in Sources */,
507
- 894FADAF29BAD4C4000FB51A /* LiveStreamModule.swift in Sources */,
508
- 894FADA529BAD4C4000FB51A /* FWCartViewController.swift in Sources */,
509
- 894FAD8929BAD4C4000FB51A /* UIImageView+FWSwizzle.swift in Sources */,
510
- 894FADA629BAD4C4000FB51A /* ProductInfoViewConfiguration.swift in Sources */,
511
- 894FADA929BAD4C4000FB51A /* TrackPurchaseParameters.swift in Sources */,
512
- 894FADA329BAD4C4000FB51A /* FWNavigatorModule.m in Sources */,
513
- 894FAD9529BAD4C4000FB51A /* FireworkSDK+Json.swift in Sources */,
514
- 894FADAD29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift in Sources */,
515
- 894FADA129BAD4C4000FB51A /* FWNavigatorContainerViewController.swift in Sources */,
516
- 894FADAB29BAD4C4000FB51A /* FireworkSDKModule.swift in Sources */,
517
- 8966951029BC465600B91A3D /* UIView+FWSwizzle.swift in Sources */,
518
- 894FAD8429BAD4C4000FB51A /* FWAppLanguageManager.swift in Sources */,
519
- 894FAD8E29BAD4C4000FB51A /* FWSwizzleUtil.swift in Sources */,
520
- 894FAD8B29BAD4C4000FB51A /* UIViewController+FWSwizzle.swift in Sources */,
521
- 894FAD9E29BAD4C4000FB51A /* VideoPlayerConfiguration.swift in Sources */,
522
- 894FAD9C29BAD4C4000FB51A /* VideoFeedConfiguration.swift in Sources */,
523
- 894FAD8329BAD4C4000FB51A /* UITextView+FWSwizzle.swift in Sources */,
524
- 894FAD7F29BAD4C4000FB51A /* UINavigationController+FWSwizzle.swift in Sources */,
525
- 894FAD7429BAD4C4000FB51A /* FWRTLManager.m in Sources */,
526
- 894FADA229BAD4C4000FB51A /* FWNavigatorModule.swift in Sources */,
527
- 894FAD9829BAD4C4000FB51A /* VideoFeedManager.swift in Sources */,
528
- 894FADA429BAD4C4000FB51A /* ShoppingModule.m in Sources */,
529
- 894FAD8029BAD4C4000FB51A /* String+Color.swift in Sources */,
530
- 894FAD9429BAD4C4000FB51A /* RCTConvert+VideoFeed.swift in Sources */,
531
- 894FAD8A29BAD4C4000FB51A /* NumberFormatter+FWSwizzle.swift in Sources */,
532
- 894FAD9229BAD4C4000FB51A /* RCTConvert+FireworkSDKModule.swift in Sources */,
533
- 894FAD9F29BAD4C4000FB51A /* VideoFeedManager.m in Sources */,
534
- 894FAD9A29BAD4C4000FB51A /* StoryBlockManager.swift in Sources */,
535
- 894FAD8829BAD4C4000FB51A /* FWLanguageUtil.swift in Sources */,
536
- 894FAD7729BAD4C4000FB51A /* FWRTLWhiteListManager.m in Sources */,
537
- 894FAD8D29BAD4C4000FB51A /* URLSession+FWSwizzle.swift in Sources */,
538
- 894FAD8C29BAD4C4000FB51A /* Bundle+FWSwizzle.swift in Sources */,
331
+ 8975238A2817DEF80070EBB6 /* UIView+ParentViewController.swift in Sources */,
332
+ 8975239B2817DEF80070EBB6 /* FireworkSDKModule.swift in Sources */,
333
+ 897523952817DEF80070EBB6 /* ShoppingModule.m in Sources */,
334
+ 89335CA628E29D3A00B84BC7 /* TrackPurchaseParameters.swift in Sources */,
335
+ 897523A02817DEF80070EBB6 /* LiveStreamModule.m in Sources */,
336
+ 8975238E2817DEF80070EBB6 /* FireworkSDK+Json.swift in Sources */,
337
+ 8953CF5E2993E0D200F7413E /* UINavigationController+FWSwizzle.swift in Sources */,
338
+ 89DF27E128A53A89003F3CCB /* RCTConvert+StoryBlock.swift in Sources */,
339
+ 8953CF6C2993FAAB00F7413E /* FWSwizzleLoader.m in Sources */,
340
+ 8975235F2817DEEE0070EBB6 /* VideoFeedConfiguration.swift in Sources */,
341
+ 89D6BBF929ACE2DC00C8AA2A /* FontInfo.swift in Sources */,
342
+ 897523612817DEEE0070EBB6 /* VideoPlayerConfiguration.swift in Sources */,
343
+ 897523972817DEF80070EBB6 /* Product.swift in Sources */,
344
+ 89DF27DD28A53A77003F3CCB /* StoryBlock.swift in Sources */,
345
+ 89DF27DF28A53A77003F3CCB /* StoryBlockManager.m in Sources */,
346
+ 897523932817DEF80070EBB6 /* FWNavigatorModule.m in Sources */,
347
+ 897523922817DEF80070EBB6 /* FWNavigatorModule.swift in Sources */,
348
+ 897523872817DEF80070EBB6 /* UIViewController+AttachChild.swift in Sources */,
349
+ 897523902817DEF80070EBB6 /* FWNavigatorProtocol.swift in Sources */,
350
+ 897523882817DEF80070EBB6 /* UIView+Constraints.swift in Sources */,
351
+ 897523982817DEF80070EBB6 /* ShoppingModule.swift in Sources */,
352
+ 892C397229B82757003BDD99 /* SDKInitOptions.swift in Sources */,
353
+ 896A8EB928E3DCCA007E51F8 /* AdConfiguration.swift in Sources */,
354
+ 8975239C2817DEF80070EBB6 /* AdBadgeConfiguration.swift in Sources */,
355
+ 897523942817DEF80070EBB6 /* FWCartViewController.swift in Sources */,
356
+ 8975239A2817DEF80070EBB6 /* FireworkSDKModule+EventTracking.swift in Sources */,
357
+ 8975239E2817DEF80070EBB6 /* FireworkSDKModule.m in Sources */,
358
+ 897523962817DEF80070EBB6 /* ProductInfoViewConfiguration.swift in Sources */,
359
+ 8975238D2817DEF80070EBB6 /* RCTConvert+VideoFeed.swift in Sources */,
360
+ 8975238C2817DEF80070EBB6 /* RCTConvert+Shopping.swift in Sources */,
361
+ 897523602817DEEE0070EBB6 /* VideoFeed.swift in Sources */,
362
+ 8975235E2817DEEE0070EBB6 /* VideoFeedManager.swift in Sources */,
363
+ 8975239D2817DEF80070EBB6 /* FireworkSDKModule+CTA.swift in Sources */,
364
+ 89DF27DE28A53A77003F3CCB /* StoryBlockManager.swift in Sources */,
365
+ 8953CF622993E44E00F7413E /* DispatchQueue+FWOnce.swift in Sources */,
366
+ 897523892817DEF80070EBB6 /* String+Color.swift in Sources */,
367
+ 8953CF602993E3B200F7413E /* FWSwizzleUtil.swift in Sources */,
368
+ 897523622817DEEE0070EBB6 /* VideoFeedManager.m in Sources */,
369
+ 897523912817DEF80070EBB6 /* FWNavigatorContainerViewController.swift in Sources */,
370
+ 8975238F2817DEF80070EBB6 /* FireworkEventName.swift in Sources */,
371
+ 8975238B2817DEF80070EBB6 /* RCTConvert+FireworkSDKModule.swift in Sources */,
372
+ 8975239F2817DEF80070EBB6 /* LiveStreamModule.swift in Sources */,
539
373
  );
540
374
  runOnlyForDeploymentPostprocessing = 0;
541
375
  };