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