react-native-firework-sdk 2.0.0 → 2.2.0-beta.1
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 +5 -4
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +6 -0
- 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 +90 -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 +5 -1
- package/android/src/main/java/com/fireworksdk/bridge/models/FWFontInfoModelDeserializer.kt +1 -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 +36 -8
- package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelDeserializer.kt +3 -3
- 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/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 +131 -45
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +11 -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/FWLiveStreamModule.kt +45 -4
- 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 +83 -50
- 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 +16 -6
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +26 -32
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +10 -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 +32 -2
- package/ios/Components/StoryBlockManager.m +33 -0
- package/ios/Components/StoryBlockManager.swift +4 -0
- package/ios/Components/VideoFeed.swift +16 -32
- package/ios/Components/VideoFeedManager.m +12 -6
- package/ios/Components/VideoFeedManager.swift +4 -0
- package/ios/Components/VideoPlayerConfiguration.swift +1 -0
- package/ios/FireworkSdk.xcodeproj/project.pbxproj +276 -212
- 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/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/Bundle+AppLanguage.swift +58 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/NumberFormatter+AppLanguage.swift +25 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/URLSession+AppLanguage.swift +69 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIImageView+AppLanguage.swift +91 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UILabel+AppLanguage.swift +98 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextField+AppLanguage.swift +97 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextView+AppLanguage.swift +97 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIView+AppLanguage.swift +38 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIViewController+AppLanguage.swift +46 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIWindow+AppLanguage.swift +26 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/LanguageUtil.swift +43 -0
- 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/DispatchQueue+FWOnce.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/DispatchQueue+Once.swift} +5 -5
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/String+Base64.swift +18 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/UIKit/UIView+UIHierarchy.swift +46 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Swizzle.swift +37 -0
- 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 +7 -1
- package/ios/Models/NativeToRN/FireworkSDK+Json.swift +5 -1
- package/ios/Models/RNToNative/RCTConvert+Shopping.swift +21 -0
- package/ios/Models/RNToNative/RCTConvert+StoryBlock.swift +2 -1
- package/ios/Models/RNToNative/RCTConvert+VideoFeed.swift +29 -1
- package/ios/Modules/FWNavigatorModule/FWNavigatorModule.swift +13 -101
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule+EventTracking.swift +34 -16
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule.m +1 -0
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +48 -2
- package/ios/Modules/FireworkSDKModule/SDKInitOptions.swift +0 -1
- package/ios/Modules/LiveStream/LiveStreamModule.swift +1 -0
- package/ios/Modules/Shopping/ProductInfoViewConfiguration.swift +7 -2
- package/ios/Modules/Shopping/ShoppingCTAResult.swift +16 -0
- package/ios/Modules/Shopping/ShoppingModule.m +2 -1
- package/ios/Modules/Shopping/ShoppingModule.swift +92 -34
- package/ios/Support/MultiHostStreaming/FWMultiHostStreaming.podspec +22 -0
- package/ios/Support/MultiHostStreaming/Sources/MultiHostStreamingSDK.swift +17 -0
- package/ios/Utils/{UINavigationController+FWSwizzle.swift → Extensions/Swizzle/UINavigationController+FWSwizzle.swift} +9 -8
- package/ios/Utils/FWSwizzleLoader.m +6 -1
- package/ios/Utils/FWSwizzleLoader.swift +13 -0
- package/ios/react_native_firework_sdk.h +1 -0
- package/ios/scripts/react_native_firework_sdk_pods.rb +27 -0
- package/lib/commonjs/FireworkSDK.js +55 -15
- 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 +21 -38
- package/lib/commonjs/VideoShopping.js.map +1 -1
- package/lib/commonjs/components/StoryBlock.js +193 -128
- package/lib/commonjs/components/StoryBlock.js.map +1 -1
- package/lib/commonjs/components/VideoFeed.js +17 -5
- package/lib/commonjs/components/VideoFeed.js.map +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/models/FWEventName.js +3 -0
- package/lib/commonjs/models/FWEventName.js.map +1 -1
- package/lib/commonjs/models/ShoppingCTAResult.js +2 -0
- package/lib/commonjs/models/VideoPlaybackEventName.js +3 -0
- package/lib/commonjs/models/VideoPlaybackEventName.js.map +1 -1
- package/lib/commonjs/modules/FireworkSDKModule.js.map +1 -1
- package/lib/commonjs/modules/ShoppingModule.js.map +1 -1
- package/lib/module/FireworkSDK.js +54 -15
- 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 +21 -40
- package/lib/module/VideoShopping.js.map +1 -1
- package/lib/module/components/StoryBlock.js +183 -133
- package/lib/module/components/StoryBlock.js.map +1 -1
- package/lib/module/components/VideoFeed.js +16 -5
- package/lib/module/components/VideoFeed.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/models/FWEventName.js +3 -0
- package/lib/module/models/FWEventName.js.map +1 -1
- package/lib/module/models/ShoppingCTAResult.js +2 -0
- package/lib/module/models/VideoPlaybackEventName.js +3 -0
- package/lib/module/models/VideoPlaybackEventName.js.map +1 -1
- package/lib/module/modules/FireworkSDKModule.js.map +1 -1
- package/lib/module/modules/ShoppingModule.js.map +1 -1
- package/lib/typescript/FireworkSDK.d.ts +15 -8
- package/lib/typescript/LiveStream.d.ts +2 -2
- package/lib/typescript/VideoShopping.d.ts +10 -12
- package/lib/typescript/components/StoryBlock.d.ts +25 -24
- package/lib/typescript/components/VideoFeed.d.ts +7 -0
- package/lib/typescript/index.d.ts +6 -6
- package/lib/typescript/models/FWEventName.d.ts +3 -0
- package/lib/typescript/models/FWEvents.d.ts +14 -1
- package/lib/typescript/models/ProductInfoViewConfiguration.d.ts +12 -8
- package/lib/typescript/models/SDKInitOptions.d.ts +6 -1
- package/lib/typescript/models/ShoppingCTAResult.d.ts +11 -0
- 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/lib/typescript/modules/FireworkSDKModule.d.ts +1 -2
- package/lib/typescript/modules/ShoppingModule.d.ts +2 -1
- package/package.json +8 -3
- package/react-native-firework-sdk.podspec +31 -24
- package/src/FireworkSDK.ts +54 -15
- package/src/LiveStream.ts +2 -2
- package/src/VideoShopping.ts +41 -54
- package/src/components/StoryBlock.tsx +210 -98
- package/src/components/VideoFeed.tsx +23 -4
- package/src/index.ts +15 -9
- package/src/models/FWEventName.ts +3 -0
- package/src/models/FWEvents.ts +14 -1
- package/src/models/ProductInfoViewConfiguration.ts +13 -8
- package/src/models/SDKInitOptions.ts +6 -1
- package/src/models/ShoppingCTAResult.ts +11 -0
- 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/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/FWSwizzleUtil.swift +0 -29
- 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
|
@@ -7,48 +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
|
-
|
|
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; };
|
|
52
81
|
/* End PBXBuildFile section */
|
|
53
82
|
|
|
54
83
|
/* Begin PBXCopyFilesBuildPhase section */
|
|
@@ -64,52 +93,51 @@
|
|
|
64
93
|
/* End PBXCopyFilesBuildPhase section */
|
|
65
94
|
|
|
66
95
|
/* Begin PBXFileReference section */
|
|
67
|
-
134814201AA4EA6300B7C361 /* libFireworkSdk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFireworkSdk.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
68
96
|
1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FireworkSdk-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
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>"; };
|
|
139
|
+
894FADB229BAD571000FB51A /* libFireworkSdk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFireworkSdk.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
82
140
|
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
141
|
/* End PBXFileReference section */
|
|
114
142
|
|
|
115
143
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -123,152 +151,159 @@
|
|
|
123
151
|
/* End PBXFrameworksBuildPhase section */
|
|
124
152
|
|
|
125
153
|
/* Begin PBXGroup section */
|
|
126
|
-
|
|
154
|
+
58B511D21A9E6C8500147676 = {
|
|
127
155
|
isa = PBXGroup;
|
|
128
156
|
children = (
|
|
129
|
-
|
|
157
|
+
89291F0E29ED9D9B00EC1FA2 /* Components */,
|
|
158
|
+
89291F3029ED9D9B00EC1FA2 /* Models */,
|
|
159
|
+
89291F1829ED9D9B00EC1FA2 /* Modules */,
|
|
160
|
+
89291F3B29ED9D9B00EC1FA2 /* Utils */,
|
|
161
|
+
1F6F718A2771B48100224AF3 /* FireworkSdk-Bridging-Header.h */,
|
|
162
|
+
897523632817DEF80070EBB6 /* react_native_firework_sdk.h */,
|
|
163
|
+
894FADB229BAD571000FB51A /* libFireworkSdk.a */,
|
|
130
164
|
);
|
|
131
|
-
name = Products;
|
|
132
165
|
sourceTree = "<group>";
|
|
133
166
|
};
|
|
134
|
-
|
|
167
|
+
89291F0E29ED9D9B00EC1FA2 /* Components */ = {
|
|
135
168
|
isa = PBXGroup;
|
|
136
169
|
children = (
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
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 */,
|
|
144
179
|
);
|
|
180
|
+
path = Components;
|
|
145
181
|
sourceTree = "<group>";
|
|
146
182
|
};
|
|
147
|
-
|
|
183
|
+
89291F1829ED9D9B00EC1FA2 /* Modules */ = {
|
|
148
184
|
isa = PBXGroup;
|
|
149
185
|
children = (
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
8975235B2817DEEE0070EBB6 /* VideoFeed.swift */,
|
|
155
|
-
8975235A2817DEEE0070EBB6 /* VideoFeedConfiguration.swift */,
|
|
156
|
-
8975235D2817DEEE0070EBB6 /* VideoFeedManager.m */,
|
|
157
|
-
897523592817DEEE0070EBB6 /* VideoFeedManager.swift */,
|
|
158
|
-
8975235C2817DEEE0070EBB6 /* VideoPlayerConfiguration.swift */,
|
|
186
|
+
89291F1929ED9D9B00EC1FA2 /* FWNavigatorModule */,
|
|
187
|
+
89291F1E29ED9D9B00EC1FA2 /* Shopping */,
|
|
188
|
+
89291F2529ED9D9B00EC1FA2 /* FireworkSDKModule */,
|
|
189
|
+
89291F2D29ED9D9B00EC1FA2 /* LiveStream */,
|
|
159
190
|
);
|
|
160
|
-
path =
|
|
191
|
+
path = Modules;
|
|
161
192
|
sourceTree = "<group>";
|
|
162
193
|
};
|
|
163
|
-
|
|
194
|
+
89291F1929ED9D9B00EC1FA2 /* FWNavigatorModule */ = {
|
|
164
195
|
isa = PBXGroup;
|
|
165
196
|
children = (
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
897523672817DEF80070EBB6 /* String+Color.swift */,
|
|
171
|
-
897523682817DEF80070EBB6 /* UIView+ParentViewController.swift */,
|
|
172
|
-
8953CF5D2993E0D200F7413E /* UINavigationController+FWSwizzle.swift */,
|
|
173
|
-
8953CF6A2993FAAB00F7413E /* FWSwizzleLoader.h */,
|
|
174
|
-
8953CF6B2993FAAB00F7413E /* FWSwizzleLoader.m */,
|
|
197
|
+
89291F1A29ED9D9B00EC1FA2 /* FWNavigatorProtocol.swift */,
|
|
198
|
+
89291F1B29ED9D9B00EC1FA2 /* FWNavigatorContainerViewController.swift */,
|
|
199
|
+
89291F1C29ED9D9B00EC1FA2 /* FWNavigatorModule.swift */,
|
|
200
|
+
89291F1D29ED9D9B00EC1FA2 /* FWNavigatorModule.m */,
|
|
175
201
|
);
|
|
176
|
-
path =
|
|
202
|
+
path = FWNavigatorModule;
|
|
177
203
|
sourceTree = "<group>";
|
|
178
204
|
};
|
|
179
|
-
|
|
205
|
+
89291F1E29ED9D9B00EC1FA2 /* Shopping */ = {
|
|
180
206
|
isa = PBXGroup;
|
|
181
207
|
children = (
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
208
|
+
89291F1F29ED9D9B00EC1FA2 /* ShoppingModule.m */,
|
|
209
|
+
89291F2029ED9D9B00EC1FA2 /* FWCartViewController.swift */,
|
|
210
|
+
89291F2129ED9D9B00EC1FA2 /* ProductInfoViewConfiguration.swift */,
|
|
211
|
+
89291F2229ED9D9B00EC1FA2 /* ShoppingCTAResult.swift */,
|
|
212
|
+
89291F2329ED9D9B00EC1FA2 /* Product.swift */,
|
|
213
|
+
89291F2429ED9D9B00EC1FA2 /* ShoppingModule.swift */,
|
|
185
214
|
);
|
|
186
|
-
path =
|
|
215
|
+
path = Shopping;
|
|
187
216
|
sourceTree = "<group>";
|
|
188
217
|
};
|
|
189
|
-
|
|
218
|
+
89291F2529ED9D9B00EC1FA2 /* FireworkSDKModule */ = {
|
|
190
219
|
isa = PBXGroup;
|
|
191
220
|
children = (
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
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 */,
|
|
196
228
|
);
|
|
197
|
-
path =
|
|
229
|
+
path = FireworkSDKModule;
|
|
198
230
|
sourceTree = "<group>";
|
|
199
231
|
};
|
|
200
|
-
|
|
232
|
+
89291F2D29ED9D9B00EC1FA2 /* LiveStream */ = {
|
|
201
233
|
isa = PBXGroup;
|
|
202
234
|
children = (
|
|
203
|
-
|
|
204
|
-
|
|
235
|
+
89291F2E29ED9D9B00EC1FA2 /* LiveStreamModule.swift */,
|
|
236
|
+
89291F2F29ED9D9B00EC1FA2 /* LiveStreamModule.m */,
|
|
205
237
|
);
|
|
206
|
-
path =
|
|
238
|
+
path = LiveStream;
|
|
207
239
|
sourceTree = "<group>";
|
|
208
240
|
};
|
|
209
|
-
|
|
241
|
+
89291F3029ED9D9B00EC1FA2 /* Models */ = {
|
|
210
242
|
isa = PBXGroup;
|
|
211
243
|
children = (
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
897523842817DEF80070EBB6 /* LiveStream */,
|
|
244
|
+
89291F3129ED9D9B00EC1FA2 /* Common */,
|
|
245
|
+
89291F3329ED9D9B00EC1FA2 /* RNToNative */,
|
|
246
|
+
89291F3829ED9D9B00EC1FA2 /* NativeToRN */,
|
|
216
247
|
);
|
|
217
|
-
path =
|
|
248
|
+
path = Models;
|
|
218
249
|
sourceTree = "<group>";
|
|
219
250
|
};
|
|
220
|
-
|
|
251
|
+
89291F3129ED9D9B00EC1FA2 /* Common */ = {
|
|
221
252
|
isa = PBXGroup;
|
|
222
253
|
children = (
|
|
223
|
-
|
|
224
|
-
897523742817DEF80070EBB6 /* FWNavigatorContainerViewController.swift */,
|
|
225
|
-
897523752817DEF80070EBB6 /* FWNavigatorModule.swift */,
|
|
226
|
-
897523762817DEF80070EBB6 /* FWNavigatorModule.m */,
|
|
254
|
+
89291F3229ED9D9B00EC1FA2 /* FontInfo.swift */,
|
|
227
255
|
);
|
|
228
|
-
path =
|
|
256
|
+
path = Common;
|
|
229
257
|
sourceTree = "<group>";
|
|
230
258
|
};
|
|
231
|
-
|
|
259
|
+
89291F3329ED9D9B00EC1FA2 /* RNToNative */ = {
|
|
232
260
|
isa = PBXGroup;
|
|
233
261
|
children = (
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
8975237C2817DEF80070EBB6 /* ShoppingModule.swift */,
|
|
262
|
+
89291F3429ED9D9B00EC1FA2 /* RCTConvert+StoryBlock.swift */,
|
|
263
|
+
89291F3529ED9D9B00EC1FA2 /* RCTConvert+FireworkSDKModule.swift */,
|
|
264
|
+
89291F3629ED9D9B00EC1FA2 /* RCTConvert+Shopping.swift */,
|
|
265
|
+
89291F3729ED9D9B00EC1FA2 /* RCTConvert+VideoFeed.swift */,
|
|
239
266
|
);
|
|
240
|
-
path =
|
|
267
|
+
path = RNToNative;
|
|
241
268
|
sourceTree = "<group>";
|
|
242
269
|
};
|
|
243
|
-
|
|
270
|
+
89291F3829ED9D9B00EC1FA2 /* NativeToRN */ = {
|
|
244
271
|
isa = PBXGroup;
|
|
245
272
|
children = (
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
897523802817DEF80070EBB6 /* FireworkSDKModule.swift */,
|
|
249
|
-
897523812817DEF80070EBB6 /* AdBadgeConfiguration.swift */,
|
|
250
|
-
897523822817DEF80070EBB6 /* FireworkSDKModule+CTA.swift */,
|
|
251
|
-
897523832817DEF80070EBB6 /* FireworkSDKModule.m */,
|
|
252
|
-
892C397129B82757003BDD99 /* SDKInitOptions.swift */,
|
|
273
|
+
89291F3929ED9D9B00EC1FA2 /* FireworkSDK+Json.swift */,
|
|
274
|
+
89291F3A29ED9D9B00EC1FA2 /* FireworkEventName.swift */,
|
|
253
275
|
);
|
|
254
|
-
path =
|
|
276
|
+
path = NativeToRN;
|
|
255
277
|
sourceTree = "<group>";
|
|
256
278
|
};
|
|
257
|
-
|
|
279
|
+
89291F3B29ED9D9B00EC1FA2 /* Utils */ = {
|
|
258
280
|
isa = PBXGroup;
|
|
259
281
|
children = (
|
|
260
|
-
|
|
261
|
-
|
|
282
|
+
89291F3C29ED9D9B00EC1FA2 /* FWSwizzleLoader.h */,
|
|
283
|
+
89291F3D29ED9D9B00EC1FA2 /* Extensions */,
|
|
284
|
+
89291F4329ED9D9B00EC1FA2 /* FWSwizzleLoader.m */,
|
|
285
|
+
89291F4429ED9D9B00EC1FA2 /* FWSwizzleLoader.swift */,
|
|
262
286
|
);
|
|
263
|
-
path =
|
|
287
|
+
path = Utils;
|
|
264
288
|
sourceTree = "<group>";
|
|
265
289
|
};
|
|
266
|
-
|
|
290
|
+
89291F3D29ED9D9B00EC1FA2 /* Extensions */ = {
|
|
267
291
|
isa = PBXGroup;
|
|
268
292
|
children = (
|
|
269
|
-
|
|
293
|
+
89291F3E29ED9D9B00EC1FA2 /* UIViewController+AttachChild.swift */,
|
|
294
|
+
89291F3F29ED9D9B00EC1FA2 /* UIView+Constraints.swift */,
|
|
295
|
+
89291F4029ED9D9B00EC1FA2 /* Swizzle */,
|
|
296
|
+
89291F4229ED9D9B00EC1FA2 /* String+Color.swift */,
|
|
270
297
|
);
|
|
271
|
-
path =
|
|
298
|
+
path = Extensions;
|
|
299
|
+
sourceTree = "<group>";
|
|
300
|
+
};
|
|
301
|
+
89291F4029ED9D9B00EC1FA2 /* Swizzle */ = {
|
|
302
|
+
isa = PBXGroup;
|
|
303
|
+
children = (
|
|
304
|
+
89291F4129ED9D9B00EC1FA2 /* UINavigationController+FWSwizzle.swift */,
|
|
305
|
+
);
|
|
306
|
+
path = Swizzle;
|
|
272
307
|
sourceTree = "<group>";
|
|
273
308
|
};
|
|
274
309
|
/* End PBXGroup section */
|
|
@@ -288,7 +323,7 @@
|
|
|
288
323
|
);
|
|
289
324
|
name = FireworkSdk;
|
|
290
325
|
productName = RCTDataManager;
|
|
291
|
-
productReference =
|
|
326
|
+
productReference = 894FADB229BAD571000FB51A /* libFireworkSdk.a */;
|
|
292
327
|
productType = "com.apple.product-type.library.static";
|
|
293
328
|
};
|
|
294
329
|
/* End PBXNativeTarget section */
|
|
@@ -328,48 +363,77 @@
|
|
|
328
363
|
isa = PBXSourcesBuildPhase;
|
|
329
364
|
buildActionMask = 2147483647;
|
|
330
365
|
files = (
|
|
331
|
-
8975238A2817DEF80070EBB6 /*
|
|
332
|
-
8975239B2817DEF80070EBB6 /*
|
|
333
|
-
897523952817DEF80070EBB6 /*
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
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 */,
|
|
373
437
|
);
|
|
374
438
|
runOnlyForDeploymentPostprocessing = 0;
|
|
375
439
|
};
|