react-native-firework-sdk 2.0.0 → 2.1.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.
- package/android/build.gradle +5 -3
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/StoryBlockFragment.kt +129 -0
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/StoryBlockFrameLayout.kt +84 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWEventName.kt +2 -1
- package/android/src/main/java/com/fireworksdk/bridge/models/FWProductInfoViewConfiguration.kt +18 -5
- package/android/src/main/java/com/fireworksdk/bridge/models/FWProductInfoViewConfigurationDeserializer.kt +33 -9
- package/android/src/main/java/com/fireworksdk/bridge/models/FWShoppingCtaResult.kt +17 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWShoppingCtaResultDeserializer.kt +33 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt +126 -45
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +6 -3
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/models/FWVideoShoppingInterface.kt +2 -2
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWNavigatorModule.kt +9 -1
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWVideoShoppingModule.kt +81 -50
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/FWEventUtils.kt +9 -2
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +1 -1
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +4 -0
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWLanguageUtil.kt +48 -16
- package/android/src/main/res/layout/fw_bridge_story_block.xml +24 -0
- package/ios/Components/StoryBlock.swift +33 -2
- package/ios/Components/StoryBlockManager.m +32 -0
- package/ios/Components/VideoFeed.swift +9 -29
- package/ios/Components/VideoFeedManager.m +11 -6
- package/ios/FireworkSdk.xcodeproj/project.pbxproj +378 -104
- package/ios/Models/NativeToRN/FireworkEventName.swift +3 -1
- package/ios/Models/RNToNative/RCTConvert+Shopping.swift +21 -0
- package/ios/Models/RNToNative/RCTConvert+VideoFeed.swift +27 -0
- package/ios/Modules/FWNavigatorModule/FWNavigatorModule.swift +5 -1
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule.m +1 -0
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +30 -0
- package/ios/Modules/Shopping/ProductInfoViewConfiguration.swift +13 -0
- package/ios/Modules/Shopping/ShoppingCTAResult.swift +16 -0
- package/ios/Modules/Shopping/ShoppingModule.m +2 -1
- package/ios/Modules/Shopping/ShoppingModule.swift +106 -30
- package/ios/Support/MultiHostStreaming/FWMultiHostStreaming.podspec +24 -0
- package/ios/Support/MultiHostStreaming/src/MultiHostStreamingSDK.swift +17 -0
- package/ios/Utils/AppLanguage/Bundle+FWSwizzle.swift +58 -0
- package/ios/Utils/AppLanguage/FWAppLanguageManager.swift +139 -0
- package/ios/Utils/AppLanguage/FWLanguageUtil.swift +43 -0
- package/ios/Utils/AppLanguage/NumberFormatter+FWSwizzle.swift +25 -0
- package/ios/Utils/AppLanguage/UIImageView+FWSwizzle.swift +91 -0
- package/ios/Utils/AppLanguage/UILabel+FWSwizzle.swift +98 -0
- package/ios/Utils/AppLanguage/UITextField+FWSwizzle.swift +97 -0
- package/ios/Utils/AppLanguage/UITextView+FWSwizzle.swift +97 -0
- package/ios/Utils/AppLanguage/UIView+FWSwizzle.swift +38 -0
- package/ios/Utils/AppLanguage/UIViewController+FWSwizzle.swift +32 -0
- package/ios/Utils/AppLanguage/UIWindow+FWSwizzle.swift +26 -0
- package/ios/Utils/AppLanguage/URLSession+FWSwizzle.swift +69 -0
- package/ios/Utils/{DispatchQueue+FWOnce.swift → Extensions/DispatchQueue+FWOnce.swift} +3 -3
- package/ios/Utils/{UINavigationController+FWSwizzle.swift → Extensions/Swizzle/UINavigationController+FWSwizzle.swift} +6 -8
- package/ios/Utils/Extensions/UIView+FWUIHierarchy.swift +47 -0
- package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.h +25 -0
- package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.m +75 -0
- package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.h +21 -0
- package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.m +124 -0
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.h +11 -0
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.m +86 -0
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.h +16 -0
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.m +55 -0
- package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.h +18 -0
- package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.m +39 -0
- package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.h +54 -0
- package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.m +141 -0
- package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.h +16 -0
- package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.m +20 -0
- package/ios/Utils/FWRTL/Classes/Utils/FWRTLDefinitions.h +52 -0
- package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.h +19 -0
- package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.m +49 -0
- package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.h +21 -0
- package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.m +38 -0
- package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.h +18 -0
- package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.m +43 -0
- package/ios/Utils/FWSwizzleLoader.m +6 -1
- package/ios/Utils/FWSwizzleLoader.swift +13 -0
- package/ios/Utils/FWSwizzleUtil.swift +17 -9
- package/ios/react_native_firework_sdk.h +1 -0
- package/ios/scripts/react_native_firework_sdk_pods.rb +31 -0
- package/lib/commonjs/FireworkSDK.js +21 -4
- package/lib/commonjs/FireworkSDK.js.map +1 -1
- package/lib/commonjs/VideoShopping.js +20 -37
- package/lib/commonjs/VideoShopping.js.map +1 -1
- package/lib/commonjs/components/StoryBlock.js +190 -125
- package/lib/commonjs/components/StoryBlock.js.map +1 -1
- package/lib/commonjs/components/VideoFeed.js +11 -1
- package/lib/commonjs/components/VideoFeed.js.map +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/models/FWEventName.js +2 -0
- package/lib/commonjs/models/FWEventName.js.map +1 -1
- package/lib/commonjs/models/ShoppingCTAResult.js +2 -0
- package/lib/commonjs/modules/FireworkSDKModule.js.map +1 -1
- package/lib/commonjs/modules/ShoppingModule.js.map +1 -1
- package/lib/module/FireworkSDK.js +21 -4
- package/lib/module/FireworkSDK.js.map +1 -1
- package/lib/module/VideoShopping.js +20 -39
- package/lib/module/VideoShopping.js.map +1 -1
- package/lib/module/components/StoryBlock.js +179 -131
- package/lib/module/components/StoryBlock.js.map +1 -1
- package/lib/module/components/VideoFeed.js +10 -1
- package/lib/module/components/VideoFeed.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/models/FWEventName.js +2 -0
- package/lib/module/models/FWEventName.js.map +1 -1
- package/lib/module/models/ShoppingCTAResult.js +2 -0
- package/lib/module/modules/FireworkSDKModule.js.map +1 -1
- package/lib/module/modules/ShoppingModule.js.map +1 -1
- package/lib/typescript/FireworkSDK.d.ts +7 -4
- package/lib/typescript/VideoShopping.d.ts +9 -11
- package/lib/typescript/components/StoryBlock.d.ts +19 -25
- package/lib/typescript/index.d.ts +6 -6
- package/lib/typescript/models/FWEventName.d.ts +2 -0
- package/lib/typescript/models/FWEvents.d.ts +14 -1
- package/lib/typescript/models/ProductInfoViewConfiguration.d.ts +36 -1
- package/lib/typescript/models/ShoppingCTAResult.d.ts +11 -0
- package/lib/typescript/modules/FireworkSDKModule.d.ts +1 -2
- package/lib/typescript/modules/ShoppingModule.d.ts +2 -1
- package/package.json +2 -2
- package/react-native-firework-sdk.podspec +26 -24
- package/src/FireworkSDK.ts +18 -5
- package/src/VideoShopping.ts +40 -53
- package/src/components/StoryBlock.tsx +199 -96
- package/src/components/VideoFeed.tsx +11 -0
- package/src/index.ts +15 -7
- package/src/models/FWEventName.ts +2 -0
- package/src/models/FWEvents.ts +14 -1
- package/src/models/ProductInfoViewConfiguration.ts +38 -1
- package/src/models/ShoppingCTAResult.ts +11 -0
- package/src/modules/FireworkSDKModule.ts +1 -2
- package/src/modules/ShoppingModule.ts +5 -5
- package/android/src/main/java/com/fireworksdk/bridge/constants/FWCommandConstant.kt +0 -6
- package/ios/Utils/UIView+ParentViewController.swift +0 -21
- package/lib/commonjs/models/AddToCartResult.js +0 -2
- package/lib/module/models/AddToCartResult.js +0 -2
- package/lib/typescript/models/AddToCartResult.d.ts +0 -10
- package/src/models/AddToCartResult.ts +0 -10
- /package/ios/Utils/{String+Color.swift → Extensions/String+Color.swift} +0 -0
- /package/ios/Utils/{UIView+Constraints.swift → Extensions/UIView+Constraints.swift} +0 -0
- /package/ios/Utils/{UIViewController+AttachChild.swift → Extensions/UIViewController+AttachChild.swift} +0 -0
- /package/lib/commonjs/models/{AddToCartResult.js.map → ShoppingCTAResult.js.map} +0 -0
- /package/lib/module/models/{AddToCartResult.js.map → ShoppingCTAResult.js.map} +0 -0
|
@@ -49,6 +49,71 @@
|
|
|
49
49
|
89DF27DE28A53A77003F3CCB /* StoryBlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27DB28A53A77003F3CCB /* StoryBlockManager.swift */; };
|
|
50
50
|
89DF27DF28A53A77003F3CCB /* StoryBlockManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27DC28A53A77003F3CCB /* StoryBlockManager.m */; };
|
|
51
51
|
89DF27E128A53A89003F3CCB /* RCTConvert+StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF27E028A53A89003F3CCB /* RCTConvert+StoryBlock.swift */; };
|
|
52
|
+
894FAD7129BAD4C4000FB51A /* UIImage+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1729BAD4C3000FB51A /* UIImage+FWRTL.m */; };
|
|
53
|
+
894FAD7229BAD4C4000FB51A /* NSString+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1829BAD4C3000FB51A /* NSString+FWRTL.m */; };
|
|
54
|
+
894FAD7329BAD4C4000FB51A /* NSObject+FWRTLReloadBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1929BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.m */; };
|
|
55
|
+
894FAD7429BAD4C4000FB51A /* FWRTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD1F29BAD4C3000FB51A /* FWRTLManager.m */; };
|
|
56
|
+
894FAD7529BAD4C4000FB51A /* FWRTLRemoteViewControllerAdaptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2229BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.m */; };
|
|
57
|
+
894FAD7629BAD4C4000FB51A /* UIView+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2829BAD4C3000FB51A /* UIView+FWRTL.m */; };
|
|
58
|
+
894FAD7729BAD4C4000FB51A /* FWRTLWhiteListManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2A29BAD4C3000FB51A /* FWRTLWhiteListManager.m */; };
|
|
59
|
+
894FAD7829BAD4C4000FB51A /* UIWindow+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2B29BAD4C3000FB51A /* UIWindow+FWRTL.m */; };
|
|
60
|
+
894FAD7929BAD4C4000FB51A /* UILabel+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2C29BAD4C3000FB51A /* UILabel+FWRTL.m */; };
|
|
61
|
+
894FAD7A29BAD4C4000FB51A /* CALayer+FWRTL.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2D29BAD4C3000FB51A /* CALayer+FWRTL.m */; };
|
|
62
|
+
894FAD7B29BAD4C4000FB51A /* UIView+FWUIHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD2F29BAD4C3000FB51A /* UIView+FWUIHierarchy.swift */; };
|
|
63
|
+
894FAD7C29BAD4C4000FB51A /* UIViewController+AttachChild.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3029BAD4C3000FB51A /* UIViewController+AttachChild.swift */; };
|
|
64
|
+
894FAD7D29BAD4C4000FB51A /* UIView+Constraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3129BAD4C3000FB51A /* UIView+Constraints.swift */; };
|
|
65
|
+
894FAD7F29BAD4C4000FB51A /* UINavigationController+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3429BAD4C3000FB51A /* UINavigationController+FWSwizzle.swift */; };
|
|
66
|
+
894FAD8029BAD4C4000FB51A /* String+Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3529BAD4C3000FB51A /* String+Color.swift */; };
|
|
67
|
+
894FAD8129BAD4C4000FB51A /* DispatchQueue+FWOnce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3629BAD4C3000FB51A /* DispatchQueue+FWOnce.swift */; };
|
|
68
|
+
894FAD8229BAD4C4000FB51A /* FWSwizzleLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3729BAD4C3000FB51A /* FWSwizzleLoader.m */; };
|
|
69
|
+
894FAD8329BAD4C4000FB51A /* UITextView+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3929BAD4C3000FB51A /* UITextView+FWSwizzle.swift */; };
|
|
70
|
+
894FAD8429BAD4C4000FB51A /* FWAppLanguageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3A29BAD4C3000FB51A /* FWAppLanguageManager.swift */; };
|
|
71
|
+
894FAD8529BAD4C4000FB51A /* UITextField+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3B29BAD4C3000FB51A /* UITextField+FWSwizzle.swift */; };
|
|
72
|
+
894FAD8629BAD4C4000FB51A /* UIWindow+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3C29BAD4C3000FB51A /* UIWindow+FWSwizzle.swift */; };
|
|
73
|
+
894FAD8729BAD4C4000FB51A /* UILabel+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3D29BAD4C3000FB51A /* UILabel+FWSwizzle.swift */; };
|
|
74
|
+
894FAD8829BAD4C4000FB51A /* FWLanguageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3E29BAD4C3000FB51A /* FWLanguageUtil.swift */; };
|
|
75
|
+
894FAD8929BAD4C4000FB51A /* UIImageView+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD3F29BAD4C3000FB51A /* UIImageView+FWSwizzle.swift */; };
|
|
76
|
+
894FAD8A29BAD4C4000FB51A /* NumberFormatter+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4029BAD4C3000FB51A /* NumberFormatter+FWSwizzle.swift */; };
|
|
77
|
+
894FAD8B29BAD4C4000FB51A /* UIViewController+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4129BAD4C3000FB51A /* UIViewController+FWSwizzle.swift */; };
|
|
78
|
+
894FAD8C29BAD4C4000FB51A /* Bundle+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4229BAD4C3000FB51A /* Bundle+FWSwizzle.swift */; };
|
|
79
|
+
894FAD8D29BAD4C4000FB51A /* URLSession+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4329BAD4C3000FB51A /* URLSession+FWSwizzle.swift */; };
|
|
80
|
+
894FAD8E29BAD4C4000FB51A /* FWSwizzleUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4429BAD4C3000FB51A /* FWSwizzleUtil.swift */; };
|
|
81
|
+
894FAD8F29BAD4C4000FB51A /* FWSwizzleLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4529BAD4C3000FB51A /* FWSwizzleLoader.swift */; };
|
|
82
|
+
894FAD9029BAD4C4000FB51A /* FontInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4829BAD4C3000FB51A /* FontInfo.swift */; };
|
|
83
|
+
894FAD9129BAD4C4000FB51A /* RCTConvert+StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4A29BAD4C3000FB51A /* RCTConvert+StoryBlock.swift */; };
|
|
84
|
+
894FAD9229BAD4C4000FB51A /* RCTConvert+FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4B29BAD4C3000FB51A /* RCTConvert+FireworkSDKModule.swift */; };
|
|
85
|
+
894FAD9329BAD4C4000FB51A /* RCTConvert+Shopping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4C29BAD4C3000FB51A /* RCTConvert+Shopping.swift */; };
|
|
86
|
+
894FAD9429BAD4C4000FB51A /* RCTConvert+VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4D29BAD4C3000FB51A /* RCTConvert+VideoFeed.swift */; };
|
|
87
|
+
894FAD9529BAD4C4000FB51A /* FireworkSDK+Json.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD4F29BAD4C3000FB51A /* FireworkSDK+Json.swift */; };
|
|
88
|
+
894FAD9629BAD4C4000FB51A /* FireworkEventName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5029BAD4C3000FB51A /* FireworkEventName.swift */; };
|
|
89
|
+
894FAD9729BAD4C4000FB51A /* StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5229BAD4C3000FB51A /* StoryBlock.swift */; };
|
|
90
|
+
894FAD9829BAD4C4000FB51A /* VideoFeedManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5329BAD4C3000FB51A /* VideoFeedManager.swift */; };
|
|
91
|
+
894FAD9929BAD4C4000FB51A /* AdConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5429BAD4C3000FB51A /* AdConfiguration.swift */; };
|
|
92
|
+
894FAD9A29BAD4C4000FB51A /* StoryBlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5529BAD4C3000FB51A /* StoryBlockManager.swift */; };
|
|
93
|
+
894FAD9B29BAD4C4000FB51A /* StoryBlockManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */; };
|
|
94
|
+
894FAD9C29BAD4C4000FB51A /* VideoFeedConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */; };
|
|
95
|
+
894FAD9D29BAD4C4000FB51A /* VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5829BAD4C3000FB51A /* VideoFeed.swift */; };
|
|
96
|
+
894FAD9E29BAD4C4000FB51A /* VideoPlayerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */; };
|
|
97
|
+
894FAD9F29BAD4C4000FB51A /* VideoFeedManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */; };
|
|
98
|
+
894FADA029BAD4C4000FB51A /* FWNavigatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */; };
|
|
99
|
+
894FADA129BAD4C4000FB51A /* FWNavigatorContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */; };
|
|
100
|
+
894FADA229BAD4C4000FB51A /* FWNavigatorModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */; };
|
|
101
|
+
894FADA329BAD4C4000FB51A /* FWNavigatorModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */; };
|
|
102
|
+
894FADA429BAD4C4000FB51A /* ShoppingModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6229BAD4C4000FB51A /* ShoppingModule.m */; };
|
|
103
|
+
894FADA529BAD4C4000FB51A /* FWCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */; };
|
|
104
|
+
894FADA629BAD4C4000FB51A /* ProductInfoViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */; };
|
|
105
|
+
894FADA729BAD4C4000FB51A /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6529BAD4C4000FB51A /* Product.swift */; };
|
|
106
|
+
894FADA829BAD4C4000FB51A /* ShoppingModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */; };
|
|
107
|
+
894FADA929BAD4C4000FB51A /* TrackPurchaseParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6829BAD4C4000FB51A /* TrackPurchaseParameters.swift */; };
|
|
108
|
+
894FADAA29BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6929BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift */; };
|
|
109
|
+
894FADAB29BAD4C4000FB51A /* FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6A29BAD4C4000FB51A /* FireworkSDKModule.swift */; };
|
|
110
|
+
894FADAC29BAD4C4000FB51A /* AdBadgeConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6B29BAD4C4000FB51A /* AdBadgeConfiguration.swift */; };
|
|
111
|
+
894FADAD29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6C29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift */; };
|
|
112
|
+
894FADAE29BAD4C4000FB51A /* FireworkSDKModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6D29BAD4C4000FB51A /* FireworkSDKModule.m */; };
|
|
113
|
+
894FADAF29BAD4C4000FB51A /* LiveStreamModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD6F29BAD4C4000FB51A /* LiveStreamModule.swift */; };
|
|
114
|
+
894FADB029BAD4C4000FB51A /* LiveStreamModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */; };
|
|
115
|
+
8966951029BC465600B91A3D /* UIView+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8966950F29BC465600B91A3D /* UIView+FWSwizzle.swift */; };
|
|
116
|
+
8967687F29C8209A009A9463 /* ShoppingCTAResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8967687E29C8209A009A9463 /* ShoppingCTAResult.swift */; };
|
|
52
117
|
/* End PBXBuildFile section */
|
|
53
118
|
|
|
54
119
|
/* Begin PBXCopyFilesBuildPhase section */
|
|
@@ -64,7 +129,6 @@
|
|
|
64
129
|
/* End PBXCopyFilesBuildPhase section */
|
|
65
130
|
|
|
66
131
|
/* Begin PBXFileReference section */
|
|
67
|
-
134814201AA4EA6300B7C361 /* libFireworkSdk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFireworkSdk.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
68
132
|
1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FireworkSdk-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
69
133
|
892C397129B82757003BDD99 /* SDKInitOptions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SDKInitOptions.swift; sourceTree = "<group>"; };
|
|
70
134
|
89335CA528E29D3A00B84BC7 /* TrackPurchaseParameters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TrackPurchaseParameters.swift; sourceTree = "<group>"; };
|
|
@@ -79,37 +143,85 @@
|
|
|
79
143
|
8975235B2817DEEE0070EBB6 /* VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeed.swift; sourceTree = "<group>"; };
|
|
80
144
|
8975235C2817DEEE0070EBB6 /* VideoPlayerConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoPlayerConfiguration.swift; sourceTree = "<group>"; };
|
|
81
145
|
8975235D2817DEEE0070EBB6 /* VideoFeedManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoFeedManager.m; sourceTree = "<group>"; };
|
|
146
|
+
894FAD1329BAD4C3000FB51A /* FWSwizzleLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWSwizzleLoader.h; sourceTree = "<group>"; };
|
|
147
|
+
894FAD1729BAD4C3000FB51A /* UIImage+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+FWRTL.m"; sourceTree = "<group>"; };
|
|
148
|
+
894FAD1829BAD4C3000FB51A /* NSString+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+FWRTL.m"; sourceTree = "<group>"; };
|
|
149
|
+
894FAD1929BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+FWRTLReloadBlock.m"; sourceTree = "<group>"; };
|
|
150
|
+
894FAD1A29BAD4C3000FB51A /* FWRTLDefinitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLDefinitions.h; sourceTree = "<group>"; };
|
|
151
|
+
894FAD1B29BAD4C3000FB51A /* NSString+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+FWRTL.h"; sourceTree = "<group>"; };
|
|
152
|
+
894FAD1C29BAD4C3000FB51A /* UIImage+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+FWRTL.h"; sourceTree = "<group>"; };
|
|
153
|
+
894FAD1D29BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+FWRTLReloadBlock.h"; sourceTree = "<group>"; };
|
|
154
|
+
894FAD1F29BAD4C3000FB51A /* FWRTLManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWRTLManager.m; sourceTree = "<group>"; };
|
|
155
|
+
894FAD2029BAD4C3000FB51A /* FWRTLManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLManager.h; sourceTree = "<group>"; };
|
|
156
|
+
894FAD2229BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWRTLRemoteViewControllerAdaptor.m; sourceTree = "<group>"; };
|
|
157
|
+
894FAD2329BAD4C3000FB51A /* UIView+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+FWRTL.h"; sourceTree = "<group>"; };
|
|
158
|
+
894FAD2429BAD4C3000FB51A /* UIWindow+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+FWRTL.h"; sourceTree = "<group>"; };
|
|
159
|
+
894FAD2529BAD4C3000FB51A /* FWRTLWhiteListManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLWhiteListManager.h; sourceTree = "<group>"; };
|
|
160
|
+
894FAD2629BAD4C3000FB51A /* CALayer+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+FWRTL.h"; sourceTree = "<group>"; };
|
|
161
|
+
894FAD2729BAD4C3000FB51A /* UILabel+FWRTL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+FWRTL.h"; sourceTree = "<group>"; };
|
|
162
|
+
894FAD2829BAD4C3000FB51A /* UIView+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+FWRTL.m"; sourceTree = "<group>"; };
|
|
163
|
+
894FAD2929BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWRTLRemoteViewControllerAdaptor.h; sourceTree = "<group>"; };
|
|
164
|
+
894FAD2A29BAD4C3000FB51A /* FWRTLWhiteListManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWRTLWhiteListManager.m; sourceTree = "<group>"; };
|
|
165
|
+
894FAD2B29BAD4C3000FB51A /* UIWindow+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+FWRTL.m"; sourceTree = "<group>"; };
|
|
166
|
+
894FAD2C29BAD4C3000FB51A /* UILabel+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+FWRTL.m"; sourceTree = "<group>"; };
|
|
167
|
+
894FAD2D29BAD4C3000FB51A /* CALayer+FWRTL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+FWRTL.m"; sourceTree = "<group>"; };
|
|
168
|
+
894FAD2F29BAD4C3000FB51A /* UIView+FWUIHierarchy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+FWUIHierarchy.swift"; sourceTree = "<group>"; };
|
|
169
|
+
894FAD3029BAD4C3000FB51A /* UIViewController+AttachChild.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+AttachChild.swift"; sourceTree = "<group>"; };
|
|
170
|
+
894FAD3129BAD4C3000FB51A /* UIView+Constraints.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Constraints.swift"; sourceTree = "<group>"; };
|
|
171
|
+
894FAD3429BAD4C3000FB51A /* UINavigationController+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UINavigationController+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
172
|
+
894FAD3529BAD4C3000FB51A /* String+Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+Color.swift"; sourceTree = "<group>"; };
|
|
173
|
+
894FAD3629BAD4C3000FB51A /* DispatchQueue+FWOnce.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+FWOnce.swift"; sourceTree = "<group>"; };
|
|
174
|
+
894FAD3729BAD4C3000FB51A /* FWSwizzleLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWSwizzleLoader.m; sourceTree = "<group>"; };
|
|
175
|
+
894FAD3929BAD4C3000FB51A /* UITextView+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextView+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
176
|
+
894FAD3A29BAD4C3000FB51A /* FWAppLanguageManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWAppLanguageManager.swift; sourceTree = "<group>"; };
|
|
177
|
+
894FAD3B29BAD4C3000FB51A /* UITextField+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextField+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
178
|
+
894FAD3C29BAD4C3000FB51A /* UIWindow+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIWindow+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
179
|
+
894FAD3D29BAD4C3000FB51A /* UILabel+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
180
|
+
894FAD3E29BAD4C3000FB51A /* FWLanguageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWLanguageUtil.swift; sourceTree = "<group>"; };
|
|
181
|
+
894FAD3F29BAD4C3000FB51A /* UIImageView+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
182
|
+
894FAD4029BAD4C3000FB51A /* NumberFormatter+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NumberFormatter+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
183
|
+
894FAD4129BAD4C3000FB51A /* UIViewController+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
184
|
+
894FAD4229BAD4C3000FB51A /* Bundle+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Bundle+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
185
|
+
894FAD4329BAD4C3000FB51A /* URLSession+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "URLSession+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
186
|
+
894FAD4429BAD4C3000FB51A /* FWSwizzleUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWSwizzleUtil.swift; sourceTree = "<group>"; };
|
|
187
|
+
894FAD4529BAD4C3000FB51A /* FWSwizzleLoader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWSwizzleLoader.swift; sourceTree = "<group>"; };
|
|
188
|
+
894FAD4829BAD4C3000FB51A /* FontInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontInfo.swift; sourceTree = "<group>"; };
|
|
189
|
+
894FAD4A29BAD4C3000FB51A /* RCTConvert+StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+StoryBlock.swift"; sourceTree = "<group>"; };
|
|
190
|
+
894FAD4B29BAD4C3000FB51A /* RCTConvert+FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+FireworkSDKModule.swift"; sourceTree = "<group>"; };
|
|
191
|
+
894FAD4C29BAD4C3000FB51A /* RCTConvert+Shopping.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+Shopping.swift"; sourceTree = "<group>"; };
|
|
192
|
+
894FAD4D29BAD4C3000FB51A /* RCTConvert+VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+VideoFeed.swift"; sourceTree = "<group>"; };
|
|
193
|
+
894FAD4F29BAD4C3000FB51A /* FireworkSDK+Json.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDK+Json.swift"; sourceTree = "<group>"; };
|
|
194
|
+
894FAD5029BAD4C3000FB51A /* FireworkEventName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkEventName.swift; sourceTree = "<group>"; };
|
|
195
|
+
894FAD5229BAD4C3000FB51A /* StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlock.swift; sourceTree = "<group>"; };
|
|
196
|
+
894FAD5329BAD4C3000FB51A /* VideoFeedManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedManager.swift; sourceTree = "<group>"; };
|
|
197
|
+
894FAD5429BAD4C3000FB51A /* AdConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdConfiguration.swift; sourceTree = "<group>"; };
|
|
198
|
+
894FAD5529BAD4C3000FB51A /* StoryBlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlockManager.swift; sourceTree = "<group>"; };
|
|
199
|
+
894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoryBlockManager.m; sourceTree = "<group>"; };
|
|
200
|
+
894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedConfiguration.swift; sourceTree = "<group>"; };
|
|
201
|
+
894FAD5829BAD4C3000FB51A /* VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeed.swift; sourceTree = "<group>"; };
|
|
202
|
+
894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoPlayerConfiguration.swift; sourceTree = "<group>"; };
|
|
203
|
+
894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoFeedManager.m; sourceTree = "<group>"; };
|
|
204
|
+
894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorProtocol.swift; sourceTree = "<group>"; };
|
|
205
|
+
894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorContainerViewController.swift; sourceTree = "<group>"; };
|
|
206
|
+
894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorModule.swift; sourceTree = "<group>"; };
|
|
207
|
+
894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWNavigatorModule.m; sourceTree = "<group>"; };
|
|
208
|
+
894FAD6229BAD4C4000FB51A /* ShoppingModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingModule.m; sourceTree = "<group>"; };
|
|
209
|
+
894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWCartViewController.swift; sourceTree = "<group>"; };
|
|
210
|
+
894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductInfoViewConfiguration.swift; sourceTree = "<group>"; };
|
|
211
|
+
894FAD6529BAD4C4000FB51A /* Product.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = "<group>"; };
|
|
212
|
+
894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingModule.swift; sourceTree = "<group>"; };
|
|
213
|
+
894FAD6829BAD4C4000FB51A /* TrackPurchaseParameters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TrackPurchaseParameters.swift; sourceTree = "<group>"; };
|
|
214
|
+
894FAD6929BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+EventTracking.swift"; sourceTree = "<group>"; };
|
|
215
|
+
894FAD6A29BAD4C4000FB51A /* FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkSDKModule.swift; sourceTree = "<group>"; };
|
|
216
|
+
894FAD6B29BAD4C4000FB51A /* AdBadgeConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdBadgeConfiguration.swift; sourceTree = "<group>"; };
|
|
217
|
+
894FAD6C29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+CTA.swift"; sourceTree = "<group>"; };
|
|
218
|
+
894FAD6D29BAD4C4000FB51A /* FireworkSDKModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FireworkSDKModule.m; sourceTree = "<group>"; };
|
|
219
|
+
894FAD6F29BAD4C4000FB51A /* LiveStreamModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LiveStreamModule.swift; sourceTree = "<group>"; };
|
|
220
|
+
894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveStreamModule.m; sourceTree = "<group>"; };
|
|
221
|
+
894FADB229BAD571000FB51A /* libFireworkSdk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFireworkSdk.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
222
|
+
8966950F29BC465600B91A3D /* UIView+FWSwizzle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
223
|
+
8967687E29C8209A009A9463 /* ShoppingCTAResult.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCTAResult.swift; sourceTree = "<group>"; };
|
|
82
224
|
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>"; };
|
|
113
225
|
/* End PBXFileReference section */
|
|
114
226
|
|
|
115
227
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -123,124 +235,223 @@
|
|
|
123
235
|
/* End PBXFrameworksBuildPhase section */
|
|
124
236
|
|
|
125
237
|
/* Begin PBXGroup section */
|
|
126
|
-
|
|
238
|
+
58B511D21A9E6C8500147676 = {
|
|
127
239
|
isa = PBXGroup;
|
|
128
240
|
children = (
|
|
129
|
-
|
|
241
|
+
894FAD5129BAD4C3000FB51A /* Components */,
|
|
242
|
+
894FAD4629BAD4C3000FB51A /* Models */,
|
|
243
|
+
894FAD5B29BAD4C3000FB51A /* Modules */,
|
|
244
|
+
894FAD1229BAD4C3000FB51A /* Utils */,
|
|
245
|
+
1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */,
|
|
246
|
+
897523632817DEF80070EBB6 /* react_native_firework_sdk.h */,
|
|
247
|
+
894FADB229BAD571000FB51A /* libFireworkSdk.a */,
|
|
130
248
|
);
|
|
131
|
-
name = Products;
|
|
132
249
|
sourceTree = "<group>";
|
|
133
250
|
};
|
|
134
|
-
|
|
251
|
+
894FAD1229BAD4C3000FB51A /* Utils */ = {
|
|
135
252
|
isa = PBXGroup;
|
|
136
253
|
children = (
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
254
|
+
894FAD1329BAD4C3000FB51A /* FWSwizzleLoader.h */,
|
|
255
|
+
894FAD1429BAD4C3000FB51A /* FWRTL */,
|
|
256
|
+
894FAD2E29BAD4C3000FB51A /* Extensions */,
|
|
257
|
+
894FAD3729BAD4C3000FB51A /* FWSwizzleLoader.m */,
|
|
258
|
+
894FAD3829BAD4C3000FB51A /* AppLanguage */,
|
|
259
|
+
894FAD4429BAD4C3000FB51A /* FWSwizzleUtil.swift */,
|
|
260
|
+
894FAD4529BAD4C3000FB51A /* FWSwizzleLoader.swift */,
|
|
261
|
+
);
|
|
262
|
+
path = Utils;
|
|
263
|
+
sourceTree = "<group>";
|
|
264
|
+
};
|
|
265
|
+
894FAD1429BAD4C3000FB51A /* FWRTL */ = {
|
|
266
|
+
isa = PBXGroup;
|
|
267
|
+
children = (
|
|
268
|
+
894FAD1529BAD4C3000FB51A /* Classes */,
|
|
144
269
|
);
|
|
270
|
+
path = FWRTL;
|
|
145
271
|
sourceTree = "<group>";
|
|
146
272
|
};
|
|
147
|
-
|
|
273
|
+
894FAD1529BAD4C3000FB51A /* Classes */ = {
|
|
148
274
|
isa = PBXGroup;
|
|
149
275
|
children = (
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
89DF27DB28A53A77003F3CCB /* StoryBlockManager.swift */,
|
|
154
|
-
8975235B2817DEEE0070EBB6 /* VideoFeed.swift */,
|
|
155
|
-
8975235A2817DEEE0070EBB6 /* VideoFeedConfiguration.swift */,
|
|
156
|
-
8975235D2817DEEE0070EBB6 /* VideoFeedManager.m */,
|
|
157
|
-
897523592817DEEE0070EBB6 /* VideoFeedManager.swift */,
|
|
158
|
-
8975235C2817DEEE0070EBB6 /* VideoPlayerConfiguration.swift */,
|
|
276
|
+
894FAD1629BAD4C3000FB51A /* Utils */,
|
|
277
|
+
894FAD1E29BAD4C3000FB51A /* Manager */,
|
|
278
|
+
894FAD2129BAD4C3000FB51A /* UICategories */,
|
|
159
279
|
);
|
|
160
|
-
path =
|
|
280
|
+
path = Classes;
|
|
161
281
|
sourceTree = "<group>";
|
|
162
282
|
};
|
|
163
|
-
|
|
283
|
+
894FAD1629BAD4C3000FB51A /* Utils */ = {
|
|
164
284
|
isa = PBXGroup;
|
|
165
285
|
children = (
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
8953CF6A2993FAAB00F7413E /* FWSwizzleLoader.h */,
|
|
174
|
-
8953CF6B2993FAAB00F7413E /* FWSwizzleLoader.m */,
|
|
286
|
+
894FAD1729BAD4C3000FB51A /* UIImage+FWRTL.m */,
|
|
287
|
+
894FAD1829BAD4C3000FB51A /* NSString+FWRTL.m */,
|
|
288
|
+
894FAD1929BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.m */,
|
|
289
|
+
894FAD1A29BAD4C3000FB51A /* FWRTLDefinitions.h */,
|
|
290
|
+
894FAD1B29BAD4C3000FB51A /* NSString+FWRTL.h */,
|
|
291
|
+
894FAD1C29BAD4C3000FB51A /* UIImage+FWRTL.h */,
|
|
292
|
+
894FAD1D29BAD4C3000FB51A /* NSObject+FWRTLReloadBlock.h */,
|
|
175
293
|
);
|
|
176
294
|
path = Utils;
|
|
177
295
|
sourceTree = "<group>";
|
|
178
296
|
};
|
|
179
|
-
|
|
297
|
+
894FAD1E29BAD4C3000FB51A /* Manager */ = {
|
|
298
|
+
isa = PBXGroup;
|
|
299
|
+
children = (
|
|
300
|
+
894FAD1F29BAD4C3000FB51A /* FWRTLManager.m */,
|
|
301
|
+
894FAD2029BAD4C3000FB51A /* FWRTLManager.h */,
|
|
302
|
+
);
|
|
303
|
+
path = Manager;
|
|
304
|
+
sourceTree = "<group>";
|
|
305
|
+
};
|
|
306
|
+
894FAD2129BAD4C3000FB51A /* UICategories */ = {
|
|
307
|
+
isa = PBXGroup;
|
|
308
|
+
children = (
|
|
309
|
+
894FAD2229BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.m */,
|
|
310
|
+
894FAD2329BAD4C3000FB51A /* UIView+FWRTL.h */,
|
|
311
|
+
894FAD2429BAD4C3000FB51A /* UIWindow+FWRTL.h */,
|
|
312
|
+
894FAD2529BAD4C3000FB51A /* FWRTLWhiteListManager.h */,
|
|
313
|
+
894FAD2629BAD4C3000FB51A /* CALayer+FWRTL.h */,
|
|
314
|
+
894FAD2729BAD4C3000FB51A /* UILabel+FWRTL.h */,
|
|
315
|
+
894FAD2829BAD4C3000FB51A /* UIView+FWRTL.m */,
|
|
316
|
+
894FAD2929BAD4C3000FB51A /* FWRTLRemoteViewControllerAdaptor.h */,
|
|
317
|
+
894FAD2A29BAD4C3000FB51A /* FWRTLWhiteListManager.m */,
|
|
318
|
+
894FAD2B29BAD4C3000FB51A /* UIWindow+FWRTL.m */,
|
|
319
|
+
894FAD2C29BAD4C3000FB51A /* UILabel+FWRTL.m */,
|
|
320
|
+
894FAD2D29BAD4C3000FB51A /* CALayer+FWRTL.m */,
|
|
321
|
+
);
|
|
322
|
+
path = UICategories;
|
|
323
|
+
sourceTree = "<group>";
|
|
324
|
+
};
|
|
325
|
+
894FAD2E29BAD4C3000FB51A /* Extensions */ = {
|
|
326
|
+
isa = PBXGroup;
|
|
327
|
+
children = (
|
|
328
|
+
894FAD2F29BAD4C3000FB51A /* UIView+FWUIHierarchy.swift */,
|
|
329
|
+
894FAD3029BAD4C3000FB51A /* UIViewController+AttachChild.swift */,
|
|
330
|
+
894FAD3129BAD4C3000FB51A /* UIView+Constraints.swift */,
|
|
331
|
+
894FAD3229BAD4C3000FB51A /* Swizzle */,
|
|
332
|
+
894FAD3529BAD4C3000FB51A /* String+Color.swift */,
|
|
333
|
+
894FAD3629BAD4C3000FB51A /* DispatchQueue+FWOnce.swift */,
|
|
334
|
+
);
|
|
335
|
+
path = Extensions;
|
|
336
|
+
sourceTree = "<group>";
|
|
337
|
+
};
|
|
338
|
+
894FAD3229BAD4C3000FB51A /* Swizzle */ = {
|
|
180
339
|
isa = PBXGroup;
|
|
181
340
|
children = (
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
341
|
+
894FAD3429BAD4C3000FB51A /* UINavigationController+FWSwizzle.swift */,
|
|
342
|
+
);
|
|
343
|
+
path = Swizzle;
|
|
344
|
+
sourceTree = "<group>";
|
|
345
|
+
};
|
|
346
|
+
894FAD3829BAD4C3000FB51A /* AppLanguage */ = {
|
|
347
|
+
isa = PBXGroup;
|
|
348
|
+
children = (
|
|
349
|
+
894FAD3929BAD4C3000FB51A /* UITextView+FWSwizzle.swift */,
|
|
350
|
+
894FAD3A29BAD4C3000FB51A /* FWAppLanguageManager.swift */,
|
|
351
|
+
894FAD3B29BAD4C3000FB51A /* UITextField+FWSwizzle.swift */,
|
|
352
|
+
894FAD3C29BAD4C3000FB51A /* UIWindow+FWSwizzle.swift */,
|
|
353
|
+
894FAD3D29BAD4C3000FB51A /* UILabel+FWSwizzle.swift */,
|
|
354
|
+
894FAD3E29BAD4C3000FB51A /* FWLanguageUtil.swift */,
|
|
355
|
+
894FAD3F29BAD4C3000FB51A /* UIImageView+FWSwizzle.swift */,
|
|
356
|
+
894FAD4029BAD4C3000FB51A /* NumberFormatter+FWSwizzle.swift */,
|
|
357
|
+
894FAD4129BAD4C3000FB51A /* UIViewController+FWSwizzle.swift */,
|
|
358
|
+
894FAD4229BAD4C3000FB51A /* Bundle+FWSwizzle.swift */,
|
|
359
|
+
894FAD4329BAD4C3000FB51A /* URLSession+FWSwizzle.swift */,
|
|
360
|
+
8966950F29BC465600B91A3D /* UIView+FWSwizzle.swift */,
|
|
361
|
+
);
|
|
362
|
+
path = AppLanguage;
|
|
363
|
+
sourceTree = "<group>";
|
|
364
|
+
};
|
|
365
|
+
894FAD4629BAD4C3000FB51A /* Models */ = {
|
|
366
|
+
isa = PBXGroup;
|
|
367
|
+
children = (
|
|
368
|
+
894FAD4729BAD4C3000FB51A /* Common */,
|
|
369
|
+
894FAD4929BAD4C3000FB51A /* RNToNative */,
|
|
370
|
+
894FAD4E29BAD4C3000FB51A /* NativeToRN */,
|
|
185
371
|
);
|
|
186
372
|
path = Models;
|
|
187
373
|
sourceTree = "<group>";
|
|
188
374
|
};
|
|
189
|
-
|
|
375
|
+
894FAD4729BAD4C3000FB51A /* Common */ = {
|
|
376
|
+
isa = PBXGroup;
|
|
377
|
+
children = (
|
|
378
|
+
894FAD4829BAD4C3000FB51A /* FontInfo.swift */,
|
|
379
|
+
);
|
|
380
|
+
path = Common;
|
|
381
|
+
sourceTree = "<group>";
|
|
382
|
+
};
|
|
383
|
+
894FAD4929BAD4C3000FB51A /* RNToNative */ = {
|
|
190
384
|
isa = PBXGroup;
|
|
191
385
|
children = (
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
386
|
+
894FAD4A29BAD4C3000FB51A /* RCTConvert+StoryBlock.swift */,
|
|
387
|
+
894FAD4B29BAD4C3000FB51A /* RCTConvert+FireworkSDKModule.swift */,
|
|
388
|
+
894FAD4C29BAD4C3000FB51A /* RCTConvert+Shopping.swift */,
|
|
389
|
+
894FAD4D29BAD4C3000FB51A /* RCTConvert+VideoFeed.swift */,
|
|
196
390
|
);
|
|
197
391
|
path = RNToNative;
|
|
198
392
|
sourceTree = "<group>";
|
|
199
393
|
};
|
|
200
|
-
|
|
394
|
+
894FAD4E29BAD4C3000FB51A /* NativeToRN */ = {
|
|
201
395
|
isa = PBXGroup;
|
|
202
396
|
children = (
|
|
203
|
-
|
|
204
|
-
|
|
397
|
+
894FAD4F29BAD4C3000FB51A /* FireworkSDK+Json.swift */,
|
|
398
|
+
894FAD5029BAD4C3000FB51A /* FireworkEventName.swift */,
|
|
205
399
|
);
|
|
206
400
|
path = NativeToRN;
|
|
207
401
|
sourceTree = "<group>";
|
|
208
402
|
};
|
|
209
|
-
|
|
403
|
+
894FAD5129BAD4C3000FB51A /* Components */ = {
|
|
404
|
+
isa = PBXGroup;
|
|
405
|
+
children = (
|
|
406
|
+
894FAD5229BAD4C3000FB51A /* StoryBlock.swift */,
|
|
407
|
+
894FAD5329BAD4C3000FB51A /* VideoFeedManager.swift */,
|
|
408
|
+
894FAD5429BAD4C3000FB51A /* AdConfiguration.swift */,
|
|
409
|
+
894FAD5529BAD4C3000FB51A /* StoryBlockManager.swift */,
|
|
410
|
+
894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */,
|
|
411
|
+
894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */,
|
|
412
|
+
894FAD5829BAD4C3000FB51A /* VideoFeed.swift */,
|
|
413
|
+
894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */,
|
|
414
|
+
894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */,
|
|
415
|
+
);
|
|
416
|
+
path = Components;
|
|
417
|
+
sourceTree = "<group>";
|
|
418
|
+
};
|
|
419
|
+
894FAD5B29BAD4C3000FB51A /* Modules */ = {
|
|
210
420
|
isa = PBXGroup;
|
|
211
421
|
children = (
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
422
|
+
894FAD5C29BAD4C3000FB51A /* FWNavigatorModule */,
|
|
423
|
+
894FAD6129BAD4C4000FB51A /* Shopping */,
|
|
424
|
+
894FAD6729BAD4C4000FB51A /* FireworkSDKModule */,
|
|
425
|
+
894FAD6E29BAD4C4000FB51A /* LiveStream */,
|
|
216
426
|
);
|
|
217
427
|
path = Modules;
|
|
218
428
|
sourceTree = "<group>";
|
|
219
429
|
};
|
|
220
|
-
|
|
430
|
+
894FAD5C29BAD4C3000FB51A /* FWNavigatorModule */ = {
|
|
221
431
|
isa = PBXGroup;
|
|
222
432
|
children = (
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
433
|
+
894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */,
|
|
434
|
+
894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */,
|
|
435
|
+
894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */,
|
|
436
|
+
894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */,
|
|
227
437
|
);
|
|
228
438
|
path = FWNavigatorModule;
|
|
229
439
|
sourceTree = "<group>";
|
|
230
440
|
};
|
|
231
|
-
|
|
441
|
+
894FAD6129BAD4C4000FB51A /* Shopping */ = {
|
|
232
442
|
isa = PBXGroup;
|
|
233
443
|
children = (
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
444
|
+
894FAD6229BAD4C4000FB51A /* ShoppingModule.m */,
|
|
445
|
+
894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */,
|
|
446
|
+
894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */,
|
|
447
|
+
894FAD6529BAD4C4000FB51A /* Product.swift */,
|
|
448
|
+
894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */,
|
|
449
|
+
8967687E29C8209A009A9463 /* ShoppingCTAResult.swift */,
|
|
239
450
|
);
|
|
240
451
|
path = Shopping;
|
|
241
452
|
sourceTree = "<group>";
|
|
242
453
|
};
|
|
243
|
-
|
|
454
|
+
894FAD6729BAD4C4000FB51A /* FireworkSDKModule */ = {
|
|
244
455
|
isa = PBXGroup;
|
|
245
456
|
children = (
|
|
246
457
|
89335CA528E29D3A00B84BC7 /* TrackPurchaseParameters.swift */,
|
|
@@ -250,27 +461,25 @@
|
|
|
250
461
|
897523822817DEF80070EBB6 /* FireworkSDKModule+CTA.swift */,
|
|
251
462
|
897523832817DEF80070EBB6 /* FireworkSDKModule.m */,
|
|
252
463
|
892C397129B82757003BDD99 /* SDKInitOptions.swift */,
|
|
464
|
+
894FAD6829BAD4C4000FB51A /* TrackPurchaseParameters.swift */,
|
|
465
|
+
894FAD6929BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift */,
|
|
466
|
+
894FAD6A29BAD4C4000FB51A /* FireworkSDKModule.swift */,
|
|
467
|
+
894FAD6B29BAD4C4000FB51A /* AdBadgeConfiguration.swift */,
|
|
468
|
+
894FAD6C29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift */,
|
|
469
|
+
894FAD6D29BAD4C4000FB51A /* FireworkSDKModule.m */,
|
|
253
470
|
);
|
|
254
471
|
path = FireworkSDKModule;
|
|
255
472
|
sourceTree = "<group>";
|
|
256
473
|
};
|
|
257
|
-
|
|
474
|
+
894FAD6E29BAD4C4000FB51A /* LiveStream */ = {
|
|
258
475
|
isa = PBXGroup;
|
|
259
476
|
children = (
|
|
260
|
-
|
|
261
|
-
|
|
477
|
+
894FAD6F29BAD4C4000FB51A /* LiveStreamModule.swift */,
|
|
478
|
+
894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */,
|
|
262
479
|
);
|
|
263
480
|
path = LiveStream;
|
|
264
481
|
sourceTree = "<group>";
|
|
265
482
|
};
|
|
266
|
-
89D6BBF729ACE28300C8AA2A /* Common */ = {
|
|
267
|
-
isa = PBXGroup;
|
|
268
|
-
children = (
|
|
269
|
-
89D6BBF829ACE2DC00C8AA2A /* FontInfo.swift */,
|
|
270
|
-
);
|
|
271
|
-
path = Common;
|
|
272
|
-
sourceTree = "<group>";
|
|
273
|
-
};
|
|
274
483
|
/* End PBXGroup section */
|
|
275
484
|
|
|
276
485
|
/* Begin PBXNativeTarget section */
|
|
@@ -288,7 +497,7 @@
|
|
|
288
497
|
);
|
|
289
498
|
name = FireworkSdk;
|
|
290
499
|
productName = RCTDataManager;
|
|
291
|
-
productReference =
|
|
500
|
+
productReference = 894FADB229BAD571000FB51A /* libFireworkSdk.a */;
|
|
292
501
|
productType = "com.apple.product-type.library.static";
|
|
293
502
|
};
|
|
294
503
|
/* End PBXNativeTarget section */
|
|
@@ -370,6 +579,71 @@
|
|
|
370
579
|
8975238F2817DEF80070EBB6 /* FireworkEventName.swift in Sources */,
|
|
371
580
|
8975238B2817DEF80070EBB6 /* RCTConvert+FireworkSDKModule.swift in Sources */,
|
|
372
581
|
8975239F2817DEF80070EBB6 /* LiveStreamModule.swift in Sources */,
|
|
582
|
+
894FAD9629BAD4C4000FB51A /* FireworkEventName.swift in Sources */,
|
|
583
|
+
894FAD7629BAD4C4000FB51A /* UIView+FWRTL.m in Sources */,
|
|
584
|
+
894FAD7129BAD4C4000FB51A /* UIImage+FWRTL.m in Sources */,
|
|
585
|
+
894FAD7C29BAD4C4000FB51A /* UIViewController+AttachChild.swift in Sources */,
|
|
586
|
+
894FAD8729BAD4C4000FB51A /* UILabel+FWSwizzle.swift in Sources */,
|
|
587
|
+
894FAD8529BAD4C4000FB51A /* UITextField+FWSwizzle.swift in Sources */,
|
|
588
|
+
894FAD7D29BAD4C4000FB51A /* UIView+Constraints.swift in Sources */,
|
|
589
|
+
894FAD9129BAD4C4000FB51A /* RCTConvert+StoryBlock.swift in Sources */,
|
|
590
|
+
894FAD8629BAD4C4000FB51A /* UIWindow+FWSwizzle.swift in Sources */,
|
|
591
|
+
894FADAE29BAD4C4000FB51A /* FireworkSDKModule.m in Sources */,
|
|
592
|
+
894FADAA29BAD4C4000FB51A /* FireworkSDKModule+EventTracking.swift in Sources */,
|
|
593
|
+
894FAD8F29BAD4C4000FB51A /* FWSwizzleLoader.swift in Sources */,
|
|
594
|
+
894FAD8229BAD4C4000FB51A /* FWSwizzleLoader.m in Sources */,
|
|
595
|
+
894FAD8129BAD4C4000FB51A /* DispatchQueue+FWOnce.swift in Sources */,
|
|
596
|
+
894FAD9B29BAD4C4000FB51A /* StoryBlockManager.m in Sources */,
|
|
597
|
+
894FADB029BAD4C4000FB51A /* LiveStreamModule.m in Sources */,
|
|
598
|
+
894FADA829BAD4C4000FB51A /* ShoppingModule.swift in Sources */,
|
|
599
|
+
894FAD7B29BAD4C4000FB51A /* UIView+FWUIHierarchy.swift in Sources */,
|
|
600
|
+
894FADA029BAD4C4000FB51A /* FWNavigatorProtocol.swift in Sources */,
|
|
601
|
+
894FAD9929BAD4C4000FB51A /* AdConfiguration.swift in Sources */,
|
|
602
|
+
894FAD9D29BAD4C4000FB51A /* VideoFeed.swift in Sources */,
|
|
603
|
+
894FAD9729BAD4C4000FB51A /* StoryBlock.swift in Sources */,
|
|
604
|
+
894FAD9329BAD4C4000FB51A /* RCTConvert+Shopping.swift in Sources */,
|
|
605
|
+
894FAD9029BAD4C4000FB51A /* FontInfo.swift in Sources */,
|
|
606
|
+
894FAD7929BAD4C4000FB51A /* UILabel+FWRTL.m in Sources */,
|
|
607
|
+
894FAD7329BAD4C4000FB51A /* NSObject+FWRTLReloadBlock.m in Sources */,
|
|
608
|
+
894FAD7829BAD4C4000FB51A /* UIWindow+FWRTL.m in Sources */,
|
|
609
|
+
894FAD7A29BAD4C4000FB51A /* CALayer+FWRTL.m in Sources */,
|
|
610
|
+
894FAD7529BAD4C4000FB51A /* FWRTLRemoteViewControllerAdaptor.m in Sources */,
|
|
611
|
+
894FAD7229BAD4C4000FB51A /* NSString+FWRTL.m in Sources */,
|
|
612
|
+
894FADAC29BAD4C4000FB51A /* AdBadgeConfiguration.swift in Sources */,
|
|
613
|
+
894FADA729BAD4C4000FB51A /* Product.swift in Sources */,
|
|
614
|
+
894FADAF29BAD4C4000FB51A /* LiveStreamModule.swift in Sources */,
|
|
615
|
+
894FADA529BAD4C4000FB51A /* FWCartViewController.swift in Sources */,
|
|
616
|
+
894FAD8929BAD4C4000FB51A /* UIImageView+FWSwizzle.swift in Sources */,
|
|
617
|
+
894FADA629BAD4C4000FB51A /* ProductInfoViewConfiguration.swift in Sources */,
|
|
618
|
+
894FADA929BAD4C4000FB51A /* TrackPurchaseParameters.swift in Sources */,
|
|
619
|
+
894FADA329BAD4C4000FB51A /* FWNavigatorModule.m in Sources */,
|
|
620
|
+
894FAD9529BAD4C4000FB51A /* FireworkSDK+Json.swift in Sources */,
|
|
621
|
+
894FADAD29BAD4C4000FB51A /* FireworkSDKModule+CTA.swift in Sources */,
|
|
622
|
+
894FADA129BAD4C4000FB51A /* FWNavigatorContainerViewController.swift in Sources */,
|
|
623
|
+
894FADAB29BAD4C4000FB51A /* FireworkSDKModule.swift in Sources */,
|
|
624
|
+
8966951029BC465600B91A3D /* UIView+FWSwizzle.swift in Sources */,
|
|
625
|
+
894FAD8429BAD4C4000FB51A /* FWAppLanguageManager.swift in Sources */,
|
|
626
|
+
894FAD8E29BAD4C4000FB51A /* FWSwizzleUtil.swift in Sources */,
|
|
627
|
+
894FAD8B29BAD4C4000FB51A /* UIViewController+FWSwizzle.swift in Sources */,
|
|
628
|
+
894FAD9E29BAD4C4000FB51A /* VideoPlayerConfiguration.swift in Sources */,
|
|
629
|
+
894FAD9C29BAD4C4000FB51A /* VideoFeedConfiguration.swift in Sources */,
|
|
630
|
+
894FAD8329BAD4C4000FB51A /* UITextView+FWSwizzle.swift in Sources */,
|
|
631
|
+
894FAD7F29BAD4C4000FB51A /* UINavigationController+FWSwizzle.swift in Sources */,
|
|
632
|
+
894FAD7429BAD4C4000FB51A /* FWRTLManager.m in Sources */,
|
|
633
|
+
894FADA229BAD4C4000FB51A /* FWNavigatorModule.swift in Sources */,
|
|
634
|
+
894FAD9829BAD4C4000FB51A /* VideoFeedManager.swift in Sources */,
|
|
635
|
+
894FADA429BAD4C4000FB51A /* ShoppingModule.m in Sources */,
|
|
636
|
+
894FAD8029BAD4C4000FB51A /* String+Color.swift in Sources */,
|
|
637
|
+
894FAD9429BAD4C4000FB51A /* RCTConvert+VideoFeed.swift in Sources */,
|
|
638
|
+
894FAD8A29BAD4C4000FB51A /* NumberFormatter+FWSwizzle.swift in Sources */,
|
|
639
|
+
894FAD9229BAD4C4000FB51A /* RCTConvert+FireworkSDKModule.swift in Sources */,
|
|
640
|
+
8967687F29C8209A009A9463 /* ShoppingCTAResult.swift in Sources */,
|
|
641
|
+
894FAD9F29BAD4C4000FB51A /* VideoFeedManager.m in Sources */,
|
|
642
|
+
894FAD9A29BAD4C4000FB51A /* StoryBlockManager.swift in Sources */,
|
|
643
|
+
894FAD8829BAD4C4000FB51A /* FWLanguageUtil.swift in Sources */,
|
|
644
|
+
894FAD7729BAD4C4000FB51A /* FWRTLWhiteListManager.m in Sources */,
|
|
645
|
+
894FAD8D29BAD4C4000FB51A /* URLSession+FWSwizzle.swift in Sources */,
|
|
646
|
+
894FAD8C29BAD4C4000FB51A /* Bundle+FWSwizzle.swift in Sources */,
|
|
373
647
|
);
|
|
374
648
|
runOnlyForDeploymentPostprocessing = 0;
|
|
375
649
|
};
|