react-native-firework-sdk 2.1.0 → 2.2.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/FireworkVideoUI.xcframework/Info.plist +40 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/FireworkVideoUI +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +280 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +18 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Info.plist +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.abi.json +1327 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.private.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/module.modulemap +11 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/FireworkVideoUI +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +556 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +18 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Info.plist +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.abi.json +1327 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.abi.json +1327 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/module.modulemap +11 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/_CodeSignature/CodeResources +245 -0
- package/README.md +1 -1
- package/android/build.gradle +1 -2
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +6 -0
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/StoryBlockFrameLayout.kt +6 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWAdBadgeConfigModelDeserializer.kt +3 -3
- package/android/src/main/java/com/fireworksdk/bridge/models/FWEventName.kt +3 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWFontInfoModelDeserializer.kt +1 -1
- package/android/src/main/java/com/fireworksdk/bridge/models/FWProductInfoViewConfigurationDeserializer.kt +10 -6
- package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelDeserializer.kt +3 -3
- package/android/src/main/java/com/fireworksdk/bridge/models/FWShoppingCtaResultDeserializer.kt +2 -2
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedConfigModelDeserializer.kt +14 -12
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedPropsModel.kt +1 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedPropsModelDeserializer.kt +11 -7
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedSource.kt +1 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlaybackDetails.kt +8 -8
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModel.kt +1 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelDeserializer.kt +19 -12
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoShoppingProductDeserializer.kt +11 -11
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt +5 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +5 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWLiveStreamModule.kt +45 -4
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWVideoShoppingModule.kt +2 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FireworkSDKModule.kt +112 -36
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/FWEventUtils.kt +7 -4
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +26 -32
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +6 -0
- package/ios/Components/StoryBlock.swift +5 -6
- package/ios/Components/StoryBlockManager.m +1 -0
- package/ios/Components/StoryBlockManager.swift +4 -0
- package/ios/Components/VideoFeed.swift +12 -8
- package/ios/Components/VideoFeedManager.m +1 -0
- package/ios/Components/VideoFeedManager.swift +4 -0
- package/ios/Components/VideoPlayerConfiguration.swift +1 -0
- package/ios/FireworkSdk.xcodeproj/project.pbxproj +261 -471
- package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.docc/FireworkVideoUI.md +13 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.h +18 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/AppLanguageManager.swift +147 -0
- package/ios/{Utils/AppLanguage/Bundle+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/Bundle+AppLanguage.swift} +7 -7
- package/ios/{Utils/AppLanguage/NumberFormatter+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/NumberFormatter+AppLanguage.swift} +5 -5
- package/ios/{Utils/AppLanguage/URLSession+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/URLSession+AppLanguage.swift} +7 -7
- package/ios/{Utils/AppLanguage/UIImageView+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIImageView+AppLanguage.swift} +8 -8
- package/ios/{Utils/AppLanguage/UILabel+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UILabel+AppLanguage.swift} +17 -17
- package/ios/{Utils/AppLanguage/UITextField+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextField+AppLanguage.swift} +16 -16
- package/ios/{Utils/AppLanguage/UITextView+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextView+AppLanguage.swift} +16 -16
- package/ios/{Utils/AppLanguage/UIView+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIView+AppLanguage.swift} +7 -7
- package/ios/{Utils/AppLanguage/UIViewController+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIViewController+AppLanguage.swift} +19 -5
- package/ios/{Utils/AppLanguage/UIWindow+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIWindow+AppLanguage.swift} +5 -5
- package/ios/{Utils/AppLanguage/FWLanguageUtil.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/LanguageUtil.swift} +4 -4
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/Foundation/NSObject+LayoutFlip.swift +42 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/CALayer+LayoutFlip.swift +160 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UILabel+LayoutFlip.swift +35 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UIView+LayoutFlip.swift +199 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/LayoutFlipManager.swift +59 -0
- package/ios/{Utils/Extensions/DispatchQueue+FWOnce.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/DispatchQueue+Once.swift} +4 -4
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/String+Base64.swift +18 -0
- package/ios/{Utils/Extensions/UIView+FWUIHierarchy.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/UIKit/UIView+UIHierarchy.swift} +4 -5
- package/ios/{Utils/FWSwizzleUtil.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Swizzle.swift} +2 -2
- package/ios/FireworkVideoUI/FireworkVideoUI.xcodeproj/project.pbxproj +766 -0
- package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/contents.xcworkspacedata +10 -0
- package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/FireworkVideoUI/FireworkVideoUITests/FireworkVideoUITests.swift +37 -0
- package/ios/FireworkVideoUI/Podfile +15 -0
- package/ios/FireworkVideoUI/Podfile.lock +16 -0
- package/ios/Models/NativeToRN/FireworkEventName.swift +4 -0
- package/ios/Models/NativeToRN/FireworkSDK+Json.swift +5 -1
- package/ios/Models/RNToNative/RCTConvert+StoryBlock.swift +2 -1
- package/ios/Models/RNToNative/RCTConvert+VideoFeed.swift +2 -1
- package/ios/Modules/FWNavigatorModule/FWNavigatorModule.swift +8 -100
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule+EventTracking.swift +34 -16
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +23 -7
- package/ios/Modules/FireworkSDKModule/SDKInitOptions.swift +0 -1
- package/ios/Modules/LiveStream/LiveStreamModule.swift +1 -0
- package/ios/Modules/Shopping/ProductInfoViewConfiguration.swift +0 -8
- package/ios/Modules/Shopping/ShoppingModule.swift +0 -18
- package/ios/Support/MultiHostStreaming/FWMultiHostStreaming.podspec +4 -6
- package/ios/Utils/Extensions/Swizzle/UINavigationController+FWSwizzle.swift +4 -1
- package/ios/scripts/react_native_firework_sdk_pods.rb +22 -26
- package/lib/commonjs/FireworkSDK.js +40 -17
- package/lib/commonjs/FireworkSDK.js.map +1 -1
- package/lib/commonjs/LiveStream.js +2 -2
- package/lib/commonjs/LiveStream.js.map +1 -1
- package/lib/commonjs/VideoShopping.js +1 -1
- package/lib/commonjs/VideoShopping.js.map +1 -1
- package/lib/commonjs/components/StoryBlock.js +9 -9
- package/lib/commonjs/components/StoryBlock.js.map +1 -1
- package/lib/commonjs/components/VideoFeed.js +6 -4
- package/lib/commonjs/components/VideoFeed.js.map +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/models/FWEventName.js +1 -0
- package/lib/commonjs/models/FWEventName.js.map +1 -1
- package/lib/commonjs/models/VideoPlaybackEventName.js +3 -0
- package/lib/commonjs/models/VideoPlaybackEventName.js.map +1 -1
- package/lib/module/FireworkSDK.js +39 -17
- package/lib/module/FireworkSDK.js.map +1 -1
- package/lib/module/LiveStream.js +2 -2
- package/lib/module/LiveStream.js.map +1 -1
- package/lib/module/VideoShopping.js +1 -1
- package/lib/module/VideoShopping.js.map +1 -1
- package/lib/module/components/StoryBlock.js +9 -7
- package/lib/module/components/StoryBlock.js.map +1 -1
- package/lib/module/components/VideoFeed.js +6 -4
- package/lib/module/components/VideoFeed.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/models/FWEventName.js +1 -0
- package/lib/module/models/FWEventName.js.map +1 -1
- package/lib/module/models/VideoPlaybackEventName.js +3 -0
- package/lib/module/models/VideoPlaybackEventName.js.map +1 -1
- package/lib/typescript/FireworkSDK.d.ts +8 -4
- package/lib/typescript/LiveStream.d.ts +2 -2
- package/lib/typescript/VideoShopping.d.ts +1 -1
- package/lib/typescript/components/StoryBlock.d.ts +7 -0
- package/lib/typescript/components/VideoFeed.d.ts +7 -0
- package/lib/typescript/index.d.ts +2 -2
- package/lib/typescript/models/FWEventName.d.ts +1 -0
- package/lib/typescript/models/ProductInfoViewConfiguration.d.ts +0 -31
- package/lib/typescript/models/SDKInitOptions.d.ts +6 -1
- package/lib/typescript/models/StoryBlockSource.d.ts +1 -1
- package/lib/typescript/models/VideoFeedSource.d.ts +1 -1
- package/lib/typescript/models/VideoPlaybackDetails.d.ts +16 -0
- package/lib/typescript/models/VideoPlaybackEventName.d.ts +13 -1
- package/lib/typescript/models/VideoPlayerConfiguration.d.ts +4 -0
- package/package.json +7 -2
- package/react-native-firework-sdk.podspec +10 -5
- package/src/FireworkSDK.ts +41 -15
- package/src/LiveStream.ts +2 -2
- package/src/VideoShopping.ts +1 -1
- package/src/components/StoryBlock.tsx +12 -3
- package/src/components/VideoFeed.tsx +12 -4
- package/src/index.ts +0 -2
- package/src/models/FWEventName.ts +1 -0
- package/src/models/ProductInfoViewConfiguration.ts +0 -32
- package/src/models/SDKInitOptions.ts +6 -1
- package/src/models/StoryBlockSource.ts +2 -1
- package/src/models/VideoFeedSource.ts +2 -1
- package/src/models/VideoPlaybackDetails.ts +16 -0
- package/src/models/VideoPlaybackEventName.ts +13 -1
- package/src/models/VideoPlayerConfiguration.ts +4 -0
- package/ios/Utils/AppLanguage/FWAppLanguageManager.swift +0 -139
- package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.h +0 -25
- package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.m +0 -75
- package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.h +0 -21
- package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.m +0 -124
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.h +0 -11
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.m +0 -86
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.h +0 -16
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.m +0 -55
- package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.h +0 -18
- package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.m +0 -39
- package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.h +0 -54
- package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.m +0 -141
- package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.h +0 -16
- package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.m +0 -20
- package/ios/Utils/FWRTL/Classes/Utils/FWRTLDefinitions.h +0 -52
- package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.h +0 -19
- package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.m +0 -49
- package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.h +0 -21
- package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.m +0 -38
- package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.h +0 -18
- package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.m +0 -43
- /package/ios/Support/MultiHostStreaming/{src → Sources}/MultiHostStreamingSDK.swift +0 -0
|
@@ -7,113 +7,77 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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 */; };
|
|
10
|
+
89291F4529ED9D9B00EC1FA2 /* StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F0F29ED9D9B00EC1FA2 /* StoryBlock.swift */; };
|
|
11
|
+
89291F4629ED9D9B00EC1FA2 /* VideoFeedManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1029ED9D9B00EC1FA2 /* VideoFeedManager.swift */; };
|
|
12
|
+
89291F4729ED9D9B00EC1FA2 /* AdConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1129ED9D9B00EC1FA2 /* AdConfiguration.swift */; };
|
|
13
|
+
89291F4829ED9D9B00EC1FA2 /* StoryBlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1229ED9D9B00EC1FA2 /* StoryBlockManager.swift */; };
|
|
14
|
+
89291F4929ED9D9B00EC1FA2 /* StoryBlockManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1329ED9D9B00EC1FA2 /* StoryBlockManager.m */; };
|
|
15
|
+
89291F4A29ED9D9B00EC1FA2 /* VideoFeedConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1429ED9D9B00EC1FA2 /* VideoFeedConfiguration.swift */; };
|
|
16
|
+
89291F4B29ED9D9B00EC1FA2 /* VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1529ED9D9B00EC1FA2 /* VideoFeed.swift */; };
|
|
17
|
+
89291F4C29ED9D9B00EC1FA2 /* VideoPlayerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1629ED9D9B00EC1FA2 /* VideoPlayerConfiguration.swift */; };
|
|
18
|
+
89291F4D29ED9D9B00EC1FA2 /* VideoFeedManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1729ED9D9B00EC1FA2 /* VideoFeedManager.m */; };
|
|
19
|
+
89291F4E29ED9D9B00EC1FA2 /* FWNavigatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1A29ED9D9B00EC1FA2 /* FWNavigatorProtocol.swift */; };
|
|
20
|
+
89291F4F29ED9D9B00EC1FA2 /* FWNavigatorContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1B29ED9D9B00EC1FA2 /* FWNavigatorContainerViewController.swift */; };
|
|
21
|
+
89291F5029ED9D9B00EC1FA2 /* FWNavigatorModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1C29ED9D9B00EC1FA2 /* FWNavigatorModule.swift */; };
|
|
22
|
+
89291F5129ED9D9B00EC1FA2 /* FWNavigatorModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1D29ED9D9B00EC1FA2 /* FWNavigatorModule.m */; };
|
|
23
|
+
89291F5229ED9D9B00EC1FA2 /* ShoppingModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F1F29ED9D9B00EC1FA2 /* ShoppingModule.m */; };
|
|
24
|
+
89291F5329ED9D9B00EC1FA2 /* FWCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2029ED9D9B00EC1FA2 /* FWCartViewController.swift */; };
|
|
25
|
+
89291F5429ED9D9B00EC1FA2 /* ProductInfoViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2129ED9D9B00EC1FA2 /* ProductInfoViewConfiguration.swift */; };
|
|
26
|
+
89291F5529ED9D9B00EC1FA2 /* ShoppingCTAResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2229ED9D9B00EC1FA2 /* ShoppingCTAResult.swift */; };
|
|
27
|
+
89291F5629ED9D9B00EC1FA2 /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2329ED9D9B00EC1FA2 /* Product.swift */; };
|
|
28
|
+
89291F5729ED9D9B00EC1FA2 /* ShoppingModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2429ED9D9B00EC1FA2 /* ShoppingModule.swift */; };
|
|
29
|
+
89291F5829ED9D9B00EC1FA2 /* TrackPurchaseParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2629ED9D9B00EC1FA2 /* TrackPurchaseParameters.swift */; };
|
|
30
|
+
89291F5929ED9D9B00EC1FA2 /* SDKInitOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2729ED9D9B00EC1FA2 /* SDKInitOptions.swift */; };
|
|
31
|
+
89291F5A29ED9D9B00EC1FA2 /* FireworkSDKModule+EventTracking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2829ED9D9B00EC1FA2 /* FireworkSDKModule+EventTracking.swift */; };
|
|
32
|
+
89291F5B29ED9D9B00EC1FA2 /* FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2929ED9D9B00EC1FA2 /* FireworkSDKModule.swift */; };
|
|
33
|
+
89291F5C29ED9D9B00EC1FA2 /* AdBadgeConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2A29ED9D9B00EC1FA2 /* AdBadgeConfiguration.swift */; };
|
|
34
|
+
89291F5D29ED9D9B00EC1FA2 /* FireworkSDKModule+CTA.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2B29ED9D9B00EC1FA2 /* FireworkSDKModule+CTA.swift */; };
|
|
35
|
+
89291F5E29ED9D9B00EC1FA2 /* FireworkSDKModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2C29ED9D9B00EC1FA2 /* FireworkSDKModule.m */; };
|
|
36
|
+
89291F5F29ED9D9B00EC1FA2 /* LiveStreamModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2E29ED9D9B00EC1FA2 /* LiveStreamModule.swift */; };
|
|
37
|
+
89291F6029ED9D9B00EC1FA2 /* LiveStreamModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F2F29ED9D9B00EC1FA2 /* LiveStreamModule.m */; };
|
|
38
|
+
89291F6129ED9D9B00EC1FA2 /* FontInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3229ED9D9B00EC1FA2 /* FontInfo.swift */; };
|
|
39
|
+
89291F6229ED9D9B00EC1FA2 /* RCTConvert+StoryBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3429ED9D9B00EC1FA2 /* RCTConvert+StoryBlock.swift */; };
|
|
40
|
+
89291F6329ED9D9B00EC1FA2 /* RCTConvert+FireworkSDKModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3529ED9D9B00EC1FA2 /* RCTConvert+FireworkSDKModule.swift */; };
|
|
41
|
+
89291F6429ED9D9B00EC1FA2 /* RCTConvert+Shopping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3629ED9D9B00EC1FA2 /* RCTConvert+Shopping.swift */; };
|
|
42
|
+
89291F6529ED9D9B00EC1FA2 /* RCTConvert+VideoFeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3729ED9D9B00EC1FA2 /* RCTConvert+VideoFeed.swift */; };
|
|
43
|
+
89291F6629ED9D9B00EC1FA2 /* FireworkSDK+Json.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3929ED9D9B00EC1FA2 /* FireworkSDK+Json.swift */; };
|
|
44
|
+
89291F6729ED9D9B00EC1FA2 /* FireworkEventName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3A29ED9D9B00EC1FA2 /* FireworkEventName.swift */; };
|
|
45
|
+
89291F6829ED9D9B00EC1FA2 /* UIViewController+AttachChild.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3E29ED9D9B00EC1FA2 /* UIViewController+AttachChild.swift */; };
|
|
46
|
+
89291F6929ED9D9B00EC1FA2 /* UIView+Constraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F3F29ED9D9B00EC1FA2 /* UIView+Constraints.swift */; };
|
|
47
|
+
89291F6A29ED9D9B00EC1FA2 /* UINavigationController+FWSwizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F4129ED9D9B00EC1FA2 /* UINavigationController+FWSwizzle.swift */; };
|
|
48
|
+
89291F6B29ED9D9B00EC1FA2 /* String+Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F4229ED9D9B00EC1FA2 /* String+Color.swift */; };
|
|
49
|
+
89291F6C29ED9D9B00EC1FA2 /* FWSwizzleLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 89291F4329ED9D9B00EC1FA2 /* FWSwizzleLoader.m */; };
|
|
50
|
+
89291F6D29ED9D9B00EC1FA2 /* FWSwizzleLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89291F4429ED9D9B00EC1FA2 /* FWSwizzleLoader.swift */; };
|
|
51
|
+
897523872817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
52
|
+
897523882817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
53
|
+
897523892817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
54
|
+
8975238A2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
55
|
+
8975238B2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
56
|
+
8975238C2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
57
|
+
8975238D2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
58
|
+
8975238E2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
59
|
+
8975238F2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
60
|
+
897523902817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
61
|
+
897523912817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
62
|
+
897523922817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
63
|
+
897523932817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
64
|
+
897523942817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
65
|
+
897523952817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
66
|
+
897523962817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
67
|
+
897523972817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
68
|
+
897523982817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
69
|
+
8975239A2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
70
|
+
8975239B2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
71
|
+
8975239C2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
72
|
+
8975239D2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
73
|
+
8975239E2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
74
|
+
8975239F2817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
75
|
+
897523A02817DEF80070EBB6 /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
76
|
+
89D6BBF929ACE2DC00C8AA2A /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
77
|
+
89DF27DD28A53A77003F3CCB /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
78
|
+
89DF27DE28A53A77003F3CCB /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
79
|
+
89DF27DF28A53A77003F3CCB /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
80
|
+
89DF27E128A53A89003F3CCB /* (null) in Sources */ = {isa = PBXBuildFile; };
|
|
117
81
|
/* End PBXBuildFile section */
|
|
118
82
|
|
|
119
83
|
/* Begin PBXCopyFilesBuildPhase section */
|
|
@@ -130,97 +94,49 @@
|
|
|
130
94
|
|
|
131
95
|
/* Begin PBXFileReference section */
|
|
132
96
|
1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FireworkSdk-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
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>"; };
|
|
97
|
+
89291F0F29ED9D9B00EC1FA2 /* StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlock.swift; sourceTree = "<group>"; };
|
|
98
|
+
89291F1029ED9D9B00EC1FA2 /* VideoFeedManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedManager.swift; sourceTree = "<group>"; };
|
|
99
|
+
89291F1129ED9D9B00EC1FA2 /* AdConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdConfiguration.swift; sourceTree = "<group>"; };
|
|
100
|
+
89291F1229ED9D9B00EC1FA2 /* StoryBlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryBlockManager.swift; sourceTree = "<group>"; };
|
|
101
|
+
89291F1329ED9D9B00EC1FA2 /* StoryBlockManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoryBlockManager.m; sourceTree = "<group>"; };
|
|
102
|
+
89291F1429ED9D9B00EC1FA2 /* VideoFeedConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeedConfiguration.swift; sourceTree = "<group>"; };
|
|
103
|
+
89291F1529ED9D9B00EC1FA2 /* VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoFeed.swift; sourceTree = "<group>"; };
|
|
104
|
+
89291F1629ED9D9B00EC1FA2 /* VideoPlayerConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoPlayerConfiguration.swift; sourceTree = "<group>"; };
|
|
105
|
+
89291F1729ED9D9B00EC1FA2 /* VideoFeedManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoFeedManager.m; sourceTree = "<group>"; };
|
|
106
|
+
89291F1A29ED9D9B00EC1FA2 /* FWNavigatorProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorProtocol.swift; sourceTree = "<group>"; };
|
|
107
|
+
89291F1B29ED9D9B00EC1FA2 /* FWNavigatorContainerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorContainerViewController.swift; sourceTree = "<group>"; };
|
|
108
|
+
89291F1C29ED9D9B00EC1FA2 /* FWNavigatorModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWNavigatorModule.swift; sourceTree = "<group>"; };
|
|
109
|
+
89291F1D29ED9D9B00EC1FA2 /* FWNavigatorModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWNavigatorModule.m; sourceTree = "<group>"; };
|
|
110
|
+
89291F1F29ED9D9B00EC1FA2 /* ShoppingModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingModule.m; sourceTree = "<group>"; };
|
|
111
|
+
89291F2029ED9D9B00EC1FA2 /* FWCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWCartViewController.swift; sourceTree = "<group>"; };
|
|
112
|
+
89291F2129ED9D9B00EC1FA2 /* ProductInfoViewConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductInfoViewConfiguration.swift; sourceTree = "<group>"; };
|
|
113
|
+
89291F2229ED9D9B00EC1FA2 /* ShoppingCTAResult.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingCTAResult.swift; sourceTree = "<group>"; };
|
|
114
|
+
89291F2329ED9D9B00EC1FA2 /* Product.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = "<group>"; };
|
|
115
|
+
89291F2429ED9D9B00EC1FA2 /* ShoppingModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingModule.swift; sourceTree = "<group>"; };
|
|
116
|
+
89291F2629ED9D9B00EC1FA2 /* TrackPurchaseParameters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TrackPurchaseParameters.swift; sourceTree = "<group>"; };
|
|
117
|
+
89291F2729ED9D9B00EC1FA2 /* SDKInitOptions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SDKInitOptions.swift; sourceTree = "<group>"; };
|
|
118
|
+
89291F2829ED9D9B00EC1FA2 /* FireworkSDKModule+EventTracking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+EventTracking.swift"; sourceTree = "<group>"; };
|
|
119
|
+
89291F2929ED9D9B00EC1FA2 /* FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkSDKModule.swift; sourceTree = "<group>"; };
|
|
120
|
+
89291F2A29ED9D9B00EC1FA2 /* AdBadgeConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdBadgeConfiguration.swift; sourceTree = "<group>"; };
|
|
121
|
+
89291F2B29ED9D9B00EC1FA2 /* FireworkSDKModule+CTA.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDKModule+CTA.swift"; sourceTree = "<group>"; };
|
|
122
|
+
89291F2C29ED9D9B00EC1FA2 /* FireworkSDKModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FireworkSDKModule.m; sourceTree = "<group>"; };
|
|
123
|
+
89291F2E29ED9D9B00EC1FA2 /* LiveStreamModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LiveStreamModule.swift; sourceTree = "<group>"; };
|
|
124
|
+
89291F2F29ED9D9B00EC1FA2 /* LiveStreamModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveStreamModule.m; sourceTree = "<group>"; };
|
|
125
|
+
89291F3229ED9D9B00EC1FA2 /* FontInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontInfo.swift; sourceTree = "<group>"; };
|
|
126
|
+
89291F3429ED9D9B00EC1FA2 /* RCTConvert+StoryBlock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+StoryBlock.swift"; sourceTree = "<group>"; };
|
|
127
|
+
89291F3529ED9D9B00EC1FA2 /* RCTConvert+FireworkSDKModule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+FireworkSDKModule.swift"; sourceTree = "<group>"; };
|
|
128
|
+
89291F3629ED9D9B00EC1FA2 /* RCTConvert+Shopping.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+Shopping.swift"; sourceTree = "<group>"; };
|
|
129
|
+
89291F3729ED9D9B00EC1FA2 /* RCTConvert+VideoFeed.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RCTConvert+VideoFeed.swift"; sourceTree = "<group>"; };
|
|
130
|
+
89291F3929ED9D9B00EC1FA2 /* FireworkSDK+Json.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FireworkSDK+Json.swift"; sourceTree = "<group>"; };
|
|
131
|
+
89291F3A29ED9D9B00EC1FA2 /* FireworkEventName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FireworkEventName.swift; sourceTree = "<group>"; };
|
|
132
|
+
89291F3C29ED9D9B00EC1FA2 /* FWSwizzleLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FWSwizzleLoader.h; sourceTree = "<group>"; };
|
|
133
|
+
89291F3E29ED9D9B00EC1FA2 /* UIViewController+AttachChild.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+AttachChild.swift"; sourceTree = "<group>"; };
|
|
134
|
+
89291F3F29ED9D9B00EC1FA2 /* UIView+Constraints.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Constraints.swift"; sourceTree = "<group>"; };
|
|
135
|
+
89291F4129ED9D9B00EC1FA2 /* UINavigationController+FWSwizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UINavigationController+FWSwizzle.swift"; sourceTree = "<group>"; };
|
|
136
|
+
89291F4229ED9D9B00EC1FA2 /* String+Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+Color.swift"; sourceTree = "<group>"; };
|
|
137
|
+
89291F4329ED9D9B00EC1FA2 /* FWSwizzleLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FWSwizzleLoader.m; sourceTree = "<group>"; };
|
|
138
|
+
89291F4429ED9D9B00EC1FA2 /* FWSwizzleLoader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FWSwizzleLoader.swift; sourceTree = "<group>"; };
|
|
221
139
|
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>"; };
|
|
224
140
|
897523632817DEF80070EBB6 /* react_native_firework_sdk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = react_native_firework_sdk.h; sourceTree = "<group>"; };
|
|
225
141
|
/* End PBXFileReference section */
|
|
226
142
|
|
|
@@ -238,246 +154,156 @@
|
|
|
238
154
|
58B511D21A9E6C8500147676 = {
|
|
239
155
|
isa = PBXGroup;
|
|
240
156
|
children = (
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
157
|
+
89291F0E29ED9D9B00EC1FA2 /* Components */,
|
|
158
|
+
89291F3029ED9D9B00EC1FA2 /* Models */,
|
|
159
|
+
89291F1829ED9D9B00EC1FA2 /* Modules */,
|
|
160
|
+
89291F3B29ED9D9B00EC1FA2 /* Utils */,
|
|
245
161
|
1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */,
|
|
246
162
|
897523632817DEF80070EBB6 /* react_native_firework_sdk.h */,
|
|
247
163
|
894FADB229BAD571000FB51A /* libFireworkSdk.a */,
|
|
248
164
|
);
|
|
249
165
|
sourceTree = "<group>";
|
|
250
166
|
};
|
|
251
|
-
|
|
167
|
+
89291F0E29ED9D9B00EC1FA2 /* Components */ = {
|
|
252
168
|
isa = PBXGroup;
|
|
253
169
|
children = (
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
170
|
+
89291F0F29ED9D9B00EC1FA2 /* StoryBlock.swift */,
|
|
171
|
+
89291F1029ED9D9B00EC1FA2 /* VideoFeedManager.swift */,
|
|
172
|
+
89291F1129ED9D9B00EC1FA2 /* AdConfiguration.swift */,
|
|
173
|
+
89291F1229ED9D9B00EC1FA2 /* StoryBlockManager.swift */,
|
|
174
|
+
89291F1329ED9D9B00EC1FA2 /* StoryBlockManager.m */,
|
|
175
|
+
89291F1429ED9D9B00EC1FA2 /* VideoFeedConfiguration.swift */,
|
|
176
|
+
89291F1529ED9D9B00EC1FA2 /* VideoFeed.swift */,
|
|
177
|
+
89291F1629ED9D9B00EC1FA2 /* VideoPlayerConfiguration.swift */,
|
|
178
|
+
89291F1729ED9D9B00EC1FA2 /* VideoFeedManager.m */,
|
|
261
179
|
);
|
|
262
|
-
path =
|
|
263
|
-
sourceTree = "<group>";
|
|
264
|
-
};
|
|
265
|
-
894FAD1429BAD4C3000FB51A /* FWRTL */ = {
|
|
266
|
-
isa = PBXGroup;
|
|
267
|
-
children = (
|
|
268
|
-
894FAD1529BAD4C3000FB51A /* Classes */,
|
|
269
|
-
);
|
|
270
|
-
path = FWRTL;
|
|
271
|
-
sourceTree = "<group>";
|
|
272
|
-
};
|
|
273
|
-
894FAD1529BAD4C3000FB51A /* Classes */ = {
|
|
274
|
-
isa = PBXGroup;
|
|
275
|
-
children = (
|
|
276
|
-
894FAD1629BAD4C3000FB51A /* Utils */,
|
|
277
|
-
894FAD1E29BAD4C3000FB51A /* Manager */,
|
|
278
|
-
894FAD2129BAD4C3000FB51A /* UICategories */,
|
|
279
|
-
);
|
|
280
|
-
path = Classes;
|
|
281
|
-
sourceTree = "<group>";
|
|
282
|
-
};
|
|
283
|
-
894FAD1629BAD4C3000FB51A /* Utils */ = {
|
|
284
|
-
isa = PBXGroup;
|
|
285
|
-
children = (
|
|
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 */,
|
|
293
|
-
);
|
|
294
|
-
path = Utils;
|
|
180
|
+
path = Components;
|
|
295
181
|
sourceTree = "<group>";
|
|
296
182
|
};
|
|
297
|
-
|
|
183
|
+
89291F1829ED9D9B00EC1FA2 /* Modules */ = {
|
|
298
184
|
isa = PBXGroup;
|
|
299
185
|
children = (
|
|
300
|
-
|
|
301
|
-
|
|
186
|
+
89291F1929ED9D9B00EC1FA2 /* FWNavigatorModule */,
|
|
187
|
+
89291F1E29ED9D9B00EC1FA2 /* Shopping */,
|
|
188
|
+
89291F2529ED9D9B00EC1FA2 /* FireworkSDKModule */,
|
|
189
|
+
89291F2D29ED9D9B00EC1FA2 /* LiveStream */,
|
|
302
190
|
);
|
|
303
|
-
path =
|
|
191
|
+
path = Modules;
|
|
304
192
|
sourceTree = "<group>";
|
|
305
193
|
};
|
|
306
|
-
|
|
194
|
+
89291F1929ED9D9B00EC1FA2 /* FWNavigatorModule */ = {
|
|
307
195
|
isa = PBXGroup;
|
|
308
196
|
children = (
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
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 */,
|
|
197
|
+
89291F1A29ED9D9B00EC1FA2 /* FWNavigatorProtocol.swift */,
|
|
198
|
+
89291F1B29ED9D9B00EC1FA2 /* FWNavigatorContainerViewController.swift */,
|
|
199
|
+
89291F1C29ED9D9B00EC1FA2 /* FWNavigatorModule.swift */,
|
|
200
|
+
89291F1D29ED9D9B00EC1FA2 /* FWNavigatorModule.m */,
|
|
321
201
|
);
|
|
322
|
-
path =
|
|
202
|
+
path = FWNavigatorModule;
|
|
323
203
|
sourceTree = "<group>";
|
|
324
204
|
};
|
|
325
|
-
|
|
205
|
+
89291F1E29ED9D9B00EC1FA2 /* Shopping */ = {
|
|
326
206
|
isa = PBXGroup;
|
|
327
207
|
children = (
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
208
|
+
89291F1F29ED9D9B00EC1FA2 /* ShoppingModule.m */,
|
|
209
|
+
89291F2029ED9D9B00EC1FA2 /* FWCartViewController.swift */,
|
|
210
|
+
89291F2129ED9D9B00EC1FA2 /* ProductInfoViewConfiguration.swift */,
|
|
211
|
+
89291F2229ED9D9B00EC1FA2 /* ShoppingCTAResult.swift */,
|
|
212
|
+
89291F2329ED9D9B00EC1FA2 /* Product.swift */,
|
|
213
|
+
89291F2429ED9D9B00EC1FA2 /* ShoppingModule.swift */,
|
|
334
214
|
);
|
|
335
|
-
path =
|
|
215
|
+
path = Shopping;
|
|
336
216
|
sourceTree = "<group>";
|
|
337
217
|
};
|
|
338
|
-
|
|
218
|
+
89291F2529ED9D9B00EC1FA2 /* FireworkSDKModule */ = {
|
|
339
219
|
isa = PBXGroup;
|
|
340
220
|
children = (
|
|
341
|
-
|
|
221
|
+
89291F2629ED9D9B00EC1FA2 /* TrackPurchaseParameters.swift */,
|
|
222
|
+
89291F2729ED9D9B00EC1FA2 /* SDKInitOptions.swift */,
|
|
223
|
+
89291F2829ED9D9B00EC1FA2 /* FireworkSDKModule+EventTracking.swift */,
|
|
224
|
+
89291F2929ED9D9B00EC1FA2 /* FireworkSDKModule.swift */,
|
|
225
|
+
89291F2A29ED9D9B00EC1FA2 /* AdBadgeConfiguration.swift */,
|
|
226
|
+
89291F2B29ED9D9B00EC1FA2 /* FireworkSDKModule+CTA.swift */,
|
|
227
|
+
89291F2C29ED9D9B00EC1FA2 /* FireworkSDKModule.m */,
|
|
342
228
|
);
|
|
343
|
-
path =
|
|
229
|
+
path = FireworkSDKModule;
|
|
344
230
|
sourceTree = "<group>";
|
|
345
231
|
};
|
|
346
|
-
|
|
232
|
+
89291F2D29ED9D9B00EC1FA2 /* LiveStream */ = {
|
|
347
233
|
isa = PBXGroup;
|
|
348
234
|
children = (
|
|
349
|
-
|
|
350
|
-
|
|
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 */,
|
|
235
|
+
89291F2E29ED9D9B00EC1FA2 /* LiveStreamModule.swift */,
|
|
236
|
+
89291F2F29ED9D9B00EC1FA2 /* LiveStreamModule.m */,
|
|
361
237
|
);
|
|
362
|
-
path =
|
|
238
|
+
path = LiveStream;
|
|
363
239
|
sourceTree = "<group>";
|
|
364
240
|
};
|
|
365
|
-
|
|
241
|
+
89291F3029ED9D9B00EC1FA2 /* Models */ = {
|
|
366
242
|
isa = PBXGroup;
|
|
367
243
|
children = (
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
244
|
+
89291F3129ED9D9B00EC1FA2 /* Common */,
|
|
245
|
+
89291F3329ED9D9B00EC1FA2 /* RNToNative */,
|
|
246
|
+
89291F3829ED9D9B00EC1FA2 /* NativeToRN */,
|
|
371
247
|
);
|
|
372
248
|
path = Models;
|
|
373
249
|
sourceTree = "<group>";
|
|
374
250
|
};
|
|
375
|
-
|
|
251
|
+
89291F3129ED9D9B00EC1FA2 /* Common */ = {
|
|
376
252
|
isa = PBXGroup;
|
|
377
253
|
children = (
|
|
378
|
-
|
|
254
|
+
89291F3229ED9D9B00EC1FA2 /* FontInfo.swift */,
|
|
379
255
|
);
|
|
380
256
|
path = Common;
|
|
381
257
|
sourceTree = "<group>";
|
|
382
258
|
};
|
|
383
|
-
|
|
259
|
+
89291F3329ED9D9B00EC1FA2 /* RNToNative */ = {
|
|
384
260
|
isa = PBXGroup;
|
|
385
261
|
children = (
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
262
|
+
89291F3429ED9D9B00EC1FA2 /* RCTConvert+StoryBlock.swift */,
|
|
263
|
+
89291F3529ED9D9B00EC1FA2 /* RCTConvert+FireworkSDKModule.swift */,
|
|
264
|
+
89291F3629ED9D9B00EC1FA2 /* RCTConvert+Shopping.swift */,
|
|
265
|
+
89291F3729ED9D9B00EC1FA2 /* RCTConvert+VideoFeed.swift */,
|
|
390
266
|
);
|
|
391
267
|
path = RNToNative;
|
|
392
268
|
sourceTree = "<group>";
|
|
393
269
|
};
|
|
394
|
-
|
|
270
|
+
89291F3829ED9D9B00EC1FA2 /* NativeToRN */ = {
|
|
395
271
|
isa = PBXGroup;
|
|
396
272
|
children = (
|
|
397
|
-
|
|
398
|
-
|
|
273
|
+
89291F3929ED9D9B00EC1FA2 /* FireworkSDK+Json.swift */,
|
|
274
|
+
89291F3A29ED9D9B00EC1FA2 /* FireworkEventName.swift */,
|
|
399
275
|
);
|
|
400
276
|
path = NativeToRN;
|
|
401
277
|
sourceTree = "<group>";
|
|
402
278
|
};
|
|
403
|
-
|
|
279
|
+
89291F3B29ED9D9B00EC1FA2 /* Utils */ = {
|
|
404
280
|
isa = PBXGroup;
|
|
405
281
|
children = (
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
894FAD5629BAD4C3000FB51A /* StoryBlockManager.m */,
|
|
411
|
-
894FAD5729BAD4C3000FB51A /* VideoFeedConfiguration.swift */,
|
|
412
|
-
894FAD5829BAD4C3000FB51A /* VideoFeed.swift */,
|
|
413
|
-
894FAD5929BAD4C3000FB51A /* VideoPlayerConfiguration.swift */,
|
|
414
|
-
894FAD5A29BAD4C3000FB51A /* VideoFeedManager.m */,
|
|
282
|
+
89291F3C29ED9D9B00EC1FA2 /* FWSwizzleLoader.h */,
|
|
283
|
+
89291F3D29ED9D9B00EC1FA2 /* Extensions */,
|
|
284
|
+
89291F4329ED9D9B00EC1FA2 /* FWSwizzleLoader.m */,
|
|
285
|
+
89291F4429ED9D9B00EC1FA2 /* FWSwizzleLoader.swift */,
|
|
415
286
|
);
|
|
416
|
-
path =
|
|
417
|
-
sourceTree = "<group>";
|
|
418
|
-
};
|
|
419
|
-
894FAD5B29BAD4C3000FB51A /* Modules */ = {
|
|
420
|
-
isa = PBXGroup;
|
|
421
|
-
children = (
|
|
422
|
-
894FAD5C29BAD4C3000FB51A /* FWNavigatorModule */,
|
|
423
|
-
894FAD6129BAD4C4000FB51A /* Shopping */,
|
|
424
|
-
894FAD6729BAD4C4000FB51A /* FireworkSDKModule */,
|
|
425
|
-
894FAD6E29BAD4C4000FB51A /* LiveStream */,
|
|
426
|
-
);
|
|
427
|
-
path = Modules;
|
|
428
|
-
sourceTree = "<group>";
|
|
429
|
-
};
|
|
430
|
-
894FAD5C29BAD4C3000FB51A /* FWNavigatorModule */ = {
|
|
431
|
-
isa = PBXGroup;
|
|
432
|
-
children = (
|
|
433
|
-
894FAD5D29BAD4C3000FB51A /* FWNavigatorProtocol.swift */,
|
|
434
|
-
894FAD5E29BAD4C3000FB51A /* FWNavigatorContainerViewController.swift */,
|
|
435
|
-
894FAD5F29BAD4C3000FB51A /* FWNavigatorModule.swift */,
|
|
436
|
-
894FAD6029BAD4C4000FB51A /* FWNavigatorModule.m */,
|
|
437
|
-
);
|
|
438
|
-
path = FWNavigatorModule;
|
|
439
|
-
sourceTree = "<group>";
|
|
440
|
-
};
|
|
441
|
-
894FAD6129BAD4C4000FB51A /* Shopping */ = {
|
|
442
|
-
isa = PBXGroup;
|
|
443
|
-
children = (
|
|
444
|
-
894FAD6229BAD4C4000FB51A /* ShoppingModule.m */,
|
|
445
|
-
894FAD6329BAD4C4000FB51A /* FWCartViewController.swift */,
|
|
446
|
-
894FAD6429BAD4C4000FB51A /* ProductInfoViewConfiguration.swift */,
|
|
447
|
-
894FAD6529BAD4C4000FB51A /* Product.swift */,
|
|
448
|
-
894FAD6629BAD4C4000FB51A /* ShoppingModule.swift */,
|
|
449
|
-
8967687E29C8209A009A9463 /* ShoppingCTAResult.swift */,
|
|
450
|
-
);
|
|
451
|
-
path = Shopping;
|
|
287
|
+
path = Utils;
|
|
452
288
|
sourceTree = "<group>";
|
|
453
289
|
};
|
|
454
|
-
|
|
290
|
+
89291F3D29ED9D9B00EC1FA2 /* Extensions */ = {
|
|
455
291
|
isa = PBXGroup;
|
|
456
292
|
children = (
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
897523822817DEF80070EBB6 /* FireworkSDKModule+CTA.swift */,
|
|
462
|
-
897523832817DEF80070EBB6 /* FireworkSDKModule.m */,
|
|
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 */,
|
|
293
|
+
89291F3E29ED9D9B00EC1FA2 /* UIViewController+AttachChild.swift */,
|
|
294
|
+
89291F3F29ED9D9B00EC1FA2 /* UIView+Constraints.swift */,
|
|
295
|
+
89291F4029ED9D9B00EC1FA2 /* Swizzle */,
|
|
296
|
+
89291F4229ED9D9B00EC1FA2 /* String+Color.swift */,
|
|
470
297
|
);
|
|
471
|
-
path =
|
|
298
|
+
path = Extensions;
|
|
472
299
|
sourceTree = "<group>";
|
|
473
300
|
};
|
|
474
|
-
|
|
301
|
+
89291F4029ED9D9B00EC1FA2 /* Swizzle */ = {
|
|
475
302
|
isa = PBXGroup;
|
|
476
303
|
children = (
|
|
477
|
-
|
|
478
|
-
894FAD7029BAD4C4000FB51A /* LiveStreamModule.m */,
|
|
304
|
+
89291F4129ED9D9B00EC1FA2 /* UINavigationController+FWSwizzle.swift */,
|
|
479
305
|
);
|
|
480
|
-
path =
|
|
306
|
+
path = Swizzle;
|
|
481
307
|
sourceTree = "<group>";
|
|
482
308
|
};
|
|
483
309
|
/* End PBXGroup section */
|
|
@@ -537,113 +363,77 @@
|
|
|
537
363
|
isa = PBXSourcesBuildPhase;
|
|
538
364
|
buildActionMask = 2147483647;
|
|
539
365
|
files = (
|
|
540
|
-
8975238A2817DEF80070EBB6 /*
|
|
541
|
-
8975239B2817DEF80070EBB6 /*
|
|
542
|
-
897523952817DEF80070EBB6 /*
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
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 */,
|
|
366
|
+
8975238A2817DEF80070EBB6 /* (null) in Sources */,
|
|
367
|
+
8975239B2817DEF80070EBB6 /* (null) in Sources */,
|
|
368
|
+
897523952817DEF80070EBB6 /* (null) in Sources */,
|
|
369
|
+
89291F6429ED9D9B00EC1FA2 /* RCTConvert+Shopping.swift in Sources */,
|
|
370
|
+
89291F5529ED9D9B00EC1FA2 /* ShoppingCTAResult.swift in Sources */,
|
|
371
|
+
89291F5829ED9D9B00EC1FA2 /* TrackPurchaseParameters.swift in Sources */,
|
|
372
|
+
897523A02817DEF80070EBB6 /* (null) in Sources */,
|
|
373
|
+
89291F5929ED9D9B00EC1FA2 /* SDKInitOptions.swift in Sources */,
|
|
374
|
+
89291F4729ED9D9B00EC1FA2 /* AdConfiguration.swift in Sources */,
|
|
375
|
+
8975238E2817DEF80070EBB6 /* (null) in Sources */,
|
|
376
|
+
89291F5129ED9D9B00EC1FA2 /* FWNavigatorModule.m in Sources */,
|
|
377
|
+
89DF27E128A53A89003F3CCB /* (null) in Sources */,
|
|
378
|
+
89D6BBF929ACE2DC00C8AA2A /* (null) in Sources */,
|
|
379
|
+
89291F5029ED9D9B00EC1FA2 /* FWNavigatorModule.swift in Sources */,
|
|
380
|
+
89291F6C29ED9D9B00EC1FA2 /* FWSwizzleLoader.m in Sources */,
|
|
381
|
+
897523972817DEF80070EBB6 /* (null) in Sources */,
|
|
382
|
+
89291F4C29ED9D9B00EC1FA2 /* VideoPlayerConfiguration.swift in Sources */,
|
|
383
|
+
89291F5E29ED9D9B00EC1FA2 /* FireworkSDKModule.m in Sources */,
|
|
384
|
+
89291F5729ED9D9B00EC1FA2 /* ShoppingModule.swift in Sources */,
|
|
385
|
+
89291F5D29ED9D9B00EC1FA2 /* FireworkSDKModule+CTA.swift in Sources */,
|
|
386
|
+
89291F4529ED9D9B00EC1FA2 /* StoryBlock.swift in Sources */,
|
|
387
|
+
89291F6529ED9D9B00EC1FA2 /* RCTConvert+VideoFeed.swift in Sources */,
|
|
388
|
+
89DF27DD28A53A77003F3CCB /* (null) in Sources */,
|
|
389
|
+
89291F4B29ED9D9B00EC1FA2 /* VideoFeed.swift in Sources */,
|
|
390
|
+
89DF27DF28A53A77003F3CCB /* (null) in Sources */,
|
|
391
|
+
897523932817DEF80070EBB6 /* (null) in Sources */,
|
|
392
|
+
897523922817DEF80070EBB6 /* (null) in Sources */,
|
|
393
|
+
89291F4A29ED9D9B00EC1FA2 /* VideoFeedConfiguration.swift in Sources */,
|
|
394
|
+
897523872817DEF80070EBB6 /* (null) in Sources */,
|
|
395
|
+
89291F4D29ED9D9B00EC1FA2 /* VideoFeedManager.m in Sources */,
|
|
396
|
+
89291F6229ED9D9B00EC1FA2 /* RCTConvert+StoryBlock.swift in Sources */,
|
|
397
|
+
897523902817DEF80070EBB6 /* (null) in Sources */,
|
|
398
|
+
89291F5329ED9D9B00EC1FA2 /* FWCartViewController.swift in Sources */,
|
|
399
|
+
89291F6B29ED9D9B00EC1FA2 /* String+Color.swift in Sources */,
|
|
400
|
+
89291F6029ED9D9B00EC1FA2 /* LiveStreamModule.m in Sources */,
|
|
401
|
+
89291F6629ED9D9B00EC1FA2 /* FireworkSDK+Json.swift in Sources */,
|
|
402
|
+
89291F6129ED9D9B00EC1FA2 /* FontInfo.swift in Sources */,
|
|
403
|
+
897523882817DEF80070EBB6 /* (null) in Sources */,
|
|
404
|
+
897523982817DEF80070EBB6 /* (null) in Sources */,
|
|
405
|
+
8975239C2817DEF80070EBB6 /* (null) in Sources */,
|
|
406
|
+
89291F4929ED9D9B00EC1FA2 /* StoryBlockManager.m in Sources */,
|
|
407
|
+
89291F4829ED9D9B00EC1FA2 /* StoryBlockManager.swift in Sources */,
|
|
408
|
+
897523942817DEF80070EBB6 /* (null) in Sources */,
|
|
409
|
+
8975239A2817DEF80070EBB6 /* (null) in Sources */,
|
|
410
|
+
8975239E2817DEF80070EBB6 /* (null) in Sources */,
|
|
411
|
+
89291F6929ED9D9B00EC1FA2 /* UIView+Constraints.swift in Sources */,
|
|
412
|
+
897523962817DEF80070EBB6 /* (null) in Sources */,
|
|
413
|
+
8975238D2817DEF80070EBB6 /* (null) in Sources */,
|
|
414
|
+
89291F5429ED9D9B00EC1FA2 /* ProductInfoViewConfiguration.swift in Sources */,
|
|
415
|
+
89291F6A29ED9D9B00EC1FA2 /* UINavigationController+FWSwizzle.swift in Sources */,
|
|
416
|
+
89291F6329ED9D9B00EC1FA2 /* RCTConvert+FireworkSDKModule.swift in Sources */,
|
|
417
|
+
89291F4E29ED9D9B00EC1FA2 /* FWNavigatorProtocol.swift in Sources */,
|
|
418
|
+
89291F5B29ED9D9B00EC1FA2 /* FireworkSDKModule.swift in Sources */,
|
|
419
|
+
89291F4629ED9D9B00EC1FA2 /* VideoFeedManager.swift in Sources */,
|
|
420
|
+
89291F6829ED9D9B00EC1FA2 /* UIViewController+AttachChild.swift in Sources */,
|
|
421
|
+
89291F5C29ED9D9B00EC1FA2 /* AdBadgeConfiguration.swift in Sources */,
|
|
422
|
+
89291F5F29ED9D9B00EC1FA2 /* LiveStreamModule.swift in Sources */,
|
|
423
|
+
8975238C2817DEF80070EBB6 /* (null) in Sources */,
|
|
424
|
+
89291F5A29ED9D9B00EC1FA2 /* FireworkSDKModule+EventTracking.swift in Sources */,
|
|
425
|
+
8975239D2817DEF80070EBB6 /* (null) in Sources */,
|
|
426
|
+
89291F6D29ED9D9B00EC1FA2 /* FWSwizzleLoader.swift in Sources */,
|
|
427
|
+
89DF27DE28A53A77003F3CCB /* (null) in Sources */,
|
|
428
|
+
897523892817DEF80070EBB6 /* (null) in Sources */,
|
|
429
|
+
89291F5629ED9D9B00EC1FA2 /* Product.swift in Sources */,
|
|
430
|
+
897523912817DEF80070EBB6 /* (null) in Sources */,
|
|
431
|
+
89291F4F29ED9D9B00EC1FA2 /* FWNavigatorContainerViewController.swift in Sources */,
|
|
432
|
+
8975238F2817DEF80070EBB6 /* (null) in Sources */,
|
|
433
|
+
89291F6729ED9D9B00EC1FA2 /* FireworkEventName.swift in Sources */,
|
|
434
|
+
89291F5229ED9D9B00EC1FA2 /* ShoppingModule.m in Sources */,
|
|
435
|
+
8975238B2817DEF80070EBB6 /* (null) in Sources */,
|
|
436
|
+
8975239F2817DEF80070EBB6 /* (null) in Sources */,
|
|
647
437
|
);
|
|
648
438
|
runOnlyForDeploymentPostprocessing = 0;
|
|
649
439
|
};
|