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