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