react-native-firework-sdk 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/FireworkVideoUI.xcframework/Info.plist +40 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/FireworkVideoUI +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +280 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +18 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Info.plist +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.abi.json +1327 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.private.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/module.modulemap +11 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/FireworkVideoUI +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +556 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +18 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Info.plist +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.abi.json +1327 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.abi.json +1327 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +41 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/module.modulemap +11 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/_CodeSignature/CodeResources +245 -0
- package/README.md +1 -1
- package/android/build.gradle +1 -2
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +6 -0
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/StoryBlockFrameLayout.kt +6 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWAdBadgeConfigModelDeserializer.kt +3 -3
- package/android/src/main/java/com/fireworksdk/bridge/models/FWEventName.kt +3 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWFontInfoModelDeserializer.kt +1 -1
- package/android/src/main/java/com/fireworksdk/bridge/models/FWProductInfoViewConfigurationDeserializer.kt +10 -6
- package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelDeserializer.kt +3 -3
- package/android/src/main/java/com/fireworksdk/bridge/models/FWShoppingCtaResultDeserializer.kt +2 -2
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedConfigModelDeserializer.kt +14 -12
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedPropsModel.kt +1 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedPropsModelDeserializer.kt +11 -7
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedSource.kt +1 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlaybackDetails.kt +8 -8
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModel.kt +1 -0
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelDeserializer.kt +19 -12
- package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoShoppingProductDeserializer.kt +11 -11
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt +5 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +5 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWLiveStreamModule.kt +45 -4
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWVideoShoppingModule.kt +2 -0
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FireworkSDKModule.kt +112 -36
- package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/FWEventUtils.kt +7 -4
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +26 -32
- package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +6 -0
- package/ios/Components/StoryBlock.swift +5 -6
- package/ios/Components/StoryBlockManager.m +1 -0
- package/ios/Components/StoryBlockManager.swift +4 -0
- package/ios/Components/VideoFeed.swift +12 -8
- package/ios/Components/VideoFeedManager.m +1 -0
- package/ios/Components/VideoFeedManager.swift +4 -0
- package/ios/Components/VideoPlayerConfiguration.swift +1 -0
- package/ios/FireworkSdk.xcodeproj/project.pbxproj +261 -471
- package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.docc/FireworkVideoUI.md +13 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.h +18 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/AppLanguageManager.swift +147 -0
- package/ios/{Utils/AppLanguage/Bundle+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/Bundle+AppLanguage.swift} +7 -7
- package/ios/{Utils/AppLanguage/NumberFormatter+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/NumberFormatter+AppLanguage.swift} +5 -5
- package/ios/{Utils/AppLanguage/URLSession+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/URLSession+AppLanguage.swift} +7 -7
- package/ios/{Utils/AppLanguage/UIImageView+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIImageView+AppLanguage.swift} +8 -8
- package/ios/{Utils/AppLanguage/UILabel+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UILabel+AppLanguage.swift} +17 -17
- package/ios/{Utils/AppLanguage/UITextField+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextField+AppLanguage.swift} +16 -16
- package/ios/{Utils/AppLanguage/UITextView+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextView+AppLanguage.swift} +16 -16
- package/ios/{Utils/AppLanguage/UIView+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIView+AppLanguage.swift} +7 -7
- package/ios/{Utils/AppLanguage/UIViewController+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIViewController+AppLanguage.swift} +19 -5
- package/ios/{Utils/AppLanguage/UIWindow+FWSwizzle.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIWindow+AppLanguage.swift} +5 -5
- package/ios/{Utils/AppLanguage/FWLanguageUtil.swift → FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/LanguageUtil.swift} +4 -4
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/Foundation/NSObject+LayoutFlip.swift +42 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/CALayer+LayoutFlip.swift +160 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UILabel+LayoutFlip.swift +35 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UIView+LayoutFlip.swift +199 -0
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/LayoutFlipManager.swift +59 -0
- package/ios/{Utils/Extensions/DispatchQueue+FWOnce.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/DispatchQueue+Once.swift} +4 -4
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/String+Base64.swift +18 -0
- package/ios/{Utils/Extensions/UIView+FWUIHierarchy.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/UIKit/UIView+UIHierarchy.swift} +4 -5
- package/ios/{Utils/FWSwizzleUtil.swift → FireworkVideoUI/FireworkVideoUI/Sources/Utils/Swizzle.swift} +2 -2
- package/ios/FireworkVideoUI/FireworkVideoUI.xcodeproj/project.pbxproj +766 -0
- package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/contents.xcworkspacedata +10 -0
- package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/FireworkVideoUI/FireworkVideoUITests/FireworkVideoUITests.swift +37 -0
- package/ios/FireworkVideoUI/Podfile +15 -0
- package/ios/FireworkVideoUI/Podfile.lock +16 -0
- package/ios/Models/NativeToRN/FireworkEventName.swift +4 -0
- package/ios/Models/NativeToRN/FireworkSDK+Json.swift +5 -1
- package/ios/Models/RNToNative/RCTConvert+StoryBlock.swift +2 -1
- package/ios/Models/RNToNative/RCTConvert+VideoFeed.swift +2 -1
- package/ios/Modules/FWNavigatorModule/FWNavigatorModule.swift +8 -100
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule+EventTracking.swift +34 -16
- package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +23 -7
- package/ios/Modules/FireworkSDKModule/SDKInitOptions.swift +0 -1
- package/ios/Modules/LiveStream/LiveStreamModule.swift +1 -0
- package/ios/Modules/Shopping/ProductInfoViewConfiguration.swift +0 -8
- package/ios/Modules/Shopping/ShoppingModule.swift +0 -18
- package/ios/Support/MultiHostStreaming/FWMultiHostStreaming.podspec +4 -6
- package/ios/Utils/Extensions/Swizzle/UINavigationController+FWSwizzle.swift +4 -1
- package/ios/scripts/react_native_firework_sdk_pods.rb +22 -26
- package/lib/commonjs/FireworkSDK.js +40 -17
- package/lib/commonjs/FireworkSDK.js.map +1 -1
- package/lib/commonjs/LiveStream.js +2 -2
- package/lib/commonjs/LiveStream.js.map +1 -1
- package/lib/commonjs/VideoShopping.js +1 -1
- package/lib/commonjs/VideoShopping.js.map +1 -1
- package/lib/commonjs/components/StoryBlock.js +9 -9
- package/lib/commonjs/components/StoryBlock.js.map +1 -1
- package/lib/commonjs/components/VideoFeed.js +6 -4
- package/lib/commonjs/components/VideoFeed.js.map +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/models/FWEventName.js +1 -0
- package/lib/commonjs/models/FWEventName.js.map +1 -1
- package/lib/commonjs/models/VideoPlaybackEventName.js +3 -0
- package/lib/commonjs/models/VideoPlaybackEventName.js.map +1 -1
- package/lib/module/FireworkSDK.js +39 -17
- package/lib/module/FireworkSDK.js.map +1 -1
- package/lib/module/LiveStream.js +2 -2
- package/lib/module/LiveStream.js.map +1 -1
- package/lib/module/VideoShopping.js +1 -1
- package/lib/module/VideoShopping.js.map +1 -1
- package/lib/module/components/StoryBlock.js +9 -7
- package/lib/module/components/StoryBlock.js.map +1 -1
- package/lib/module/components/VideoFeed.js +6 -4
- package/lib/module/components/VideoFeed.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/models/FWEventName.js +1 -0
- package/lib/module/models/FWEventName.js.map +1 -1
- package/lib/module/models/VideoPlaybackEventName.js +3 -0
- package/lib/module/models/VideoPlaybackEventName.js.map +1 -1
- package/lib/typescript/FireworkSDK.d.ts +8 -4
- package/lib/typescript/LiveStream.d.ts +2 -2
- package/lib/typescript/VideoShopping.d.ts +1 -1
- package/lib/typescript/components/StoryBlock.d.ts +7 -0
- package/lib/typescript/components/VideoFeed.d.ts +7 -0
- package/lib/typescript/index.d.ts +2 -2
- package/lib/typescript/models/FWEventName.d.ts +1 -0
- package/lib/typescript/models/ProductInfoViewConfiguration.d.ts +0 -31
- package/lib/typescript/models/SDKInitOptions.d.ts +6 -1
- package/lib/typescript/models/StoryBlockSource.d.ts +1 -1
- package/lib/typescript/models/VideoFeedSource.d.ts +1 -1
- package/lib/typescript/models/VideoPlaybackDetails.d.ts +16 -0
- package/lib/typescript/models/VideoPlaybackEventName.d.ts +13 -1
- package/lib/typescript/models/VideoPlayerConfiguration.d.ts +4 -0
- package/package.json +7 -2
- package/react-native-firework-sdk.podspec +10 -5
- package/src/FireworkSDK.ts +41 -15
- package/src/LiveStream.ts +2 -2
- package/src/VideoShopping.ts +1 -1
- package/src/components/StoryBlock.tsx +12 -3
- package/src/components/VideoFeed.tsx +12 -4
- package/src/index.ts +0 -2
- package/src/models/FWEventName.ts +1 -0
- package/src/models/ProductInfoViewConfiguration.ts +0 -32
- package/src/models/SDKInitOptions.ts +6 -1
- package/src/models/StoryBlockSource.ts +2 -1
- package/src/models/VideoFeedSource.ts +2 -1
- package/src/models/VideoPlaybackDetails.ts +16 -0
- package/src/models/VideoPlaybackEventName.ts +13 -1
- package/src/models/VideoPlayerConfiguration.ts +4 -0
- package/ios/Utils/AppLanguage/FWAppLanguageManager.swift +0 -139
- package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.h +0 -25
- package/ios/Utils/FWRTL/Classes/Manager/FWRTLManager.m +0 -75
- package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.h +0 -21
- package/ios/Utils/FWRTL/Classes/UICategories/CALayer+FWRTL.m +0 -124
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.h +0 -11
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLRemoteViewControllerAdaptor.m +0 -86
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.h +0 -16
- package/ios/Utils/FWRTL/Classes/UICategories/FWRTLWhiteListManager.m +0 -55
- package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.h +0 -18
- package/ios/Utils/FWRTL/Classes/UICategories/UILabel+FWRTL.m +0 -39
- package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.h +0 -54
- package/ios/Utils/FWRTL/Classes/UICategories/UIView+FWRTL.m +0 -141
- package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.h +0 -16
- package/ios/Utils/FWRTL/Classes/UICategories/UIWindow+FWRTL.m +0 -20
- package/ios/Utils/FWRTL/Classes/Utils/FWRTLDefinitions.h +0 -52
- package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.h +0 -19
- package/ios/Utils/FWRTL/Classes/Utils/NSObject+FWRTLReloadBlock.m +0 -49
- package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.h +0 -21
- package/ios/Utils/FWRTL/Classes/Utils/NSString+FWRTL.m +0 -38
- package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.h +0 -18
- package/ios/Utils/FWRTL/Classes/Utils/UIImage+FWRTL.m +0 -43
- /package/ios/Support/MultiHostStreaming/{src → Sources}/MultiHostStreamingSDK.swift +0 -0
|
@@ -0,0 +1,766 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 56;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
89CDDD7D2A016440006DD185 /* Swizzle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD5D2A016440006DD185 /* Swizzle.swift */; };
|
|
11
|
+
89CDDD7E2A016440006DD185 /* UIView+UIHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD602A016440006DD185 /* UIView+UIHierarchy.swift */; };
|
|
12
|
+
89CDDD7F2A016440006DD185 /* DispatchQueue+Once.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD622A016440006DD185 /* DispatchQueue+Once.swift */; };
|
|
13
|
+
89CDDD802A016440006DD185 /* String+Base64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD632A016440006DD185 /* String+Base64.swift */; };
|
|
14
|
+
89CDDD812A016440006DD185 /* UILabel+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD672A016440006DD185 /* UILabel+LayoutFlip.swift */; };
|
|
15
|
+
89CDDD822A016440006DD185 /* CALayer+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD682A016440006DD185 /* CALayer+LayoutFlip.swift */; };
|
|
16
|
+
89CDDD832A016440006DD185 /* UIView+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD692A016440006DD185 /* UIView+LayoutFlip.swift */; };
|
|
17
|
+
89CDDD842A016440006DD185 /* NSObject+LayoutFlip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6B2A016440006DD185 /* NSObject+LayoutFlip.swift */; };
|
|
18
|
+
89CDDD852A016440006DD185 /* LayoutFlipManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6C2A016440006DD185 /* LayoutFlipManager.swift */; };
|
|
19
|
+
89CDDD862A016440006DD185 /* AppLanguageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6E2A016440006DD185 /* AppLanguageManager.swift */; };
|
|
20
|
+
89CDDD872A016440006DD185 /* LanguageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD6F2A016440006DD185 /* LanguageUtil.swift */; };
|
|
21
|
+
89CDDD882A016440006DD185 /* UITextView+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD722A016440006DD185 /* UITextView+AppLanguage.swift */; };
|
|
22
|
+
89CDDD892A016440006DD185 /* UIWindow+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD732A016440006DD185 /* UIWindow+AppLanguage.swift */; };
|
|
23
|
+
89CDDD8A2A016440006DD185 /* UITextField+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD742A016440006DD185 /* UITextField+AppLanguage.swift */; };
|
|
24
|
+
89CDDD8B2A016440006DD185 /* UIImageView+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD752A016440006DD185 /* UIImageView+AppLanguage.swift */; };
|
|
25
|
+
89CDDD8C2A016440006DD185 /* UILabel+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD762A016440006DD185 /* UILabel+AppLanguage.swift */; };
|
|
26
|
+
89CDDD8D2A016440006DD185 /* UIView+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD772A016440006DD185 /* UIView+AppLanguage.swift */; };
|
|
27
|
+
89CDDD8E2A016440006DD185 /* UIViewController+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD782A016440006DD185 /* UIViewController+AppLanguage.swift */; };
|
|
28
|
+
89CDDD8F2A016440006DD185 /* Bundle+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD7A2A016440006DD185 /* Bundle+AppLanguage.swift */; };
|
|
29
|
+
89CDDD902A016440006DD185 /* NumberFormatter+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD7B2A016440006DD185 /* NumberFormatter+AppLanguage.swift */; };
|
|
30
|
+
89CDDD912A016440006DD185 /* URLSession+AppLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CDDD7C2A016440006DD185 /* URLSession+AppLanguage.swift */; };
|
|
31
|
+
89DF336329F813F600A8B124 /* FireworkVideoUI.docc in Sources */ = {isa = PBXBuildFile; fileRef = 89DF336229F813F600A8B124 /* FireworkVideoUI.docc */; };
|
|
32
|
+
89DF336929F813F600A8B124 /* FireworkVideoUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */; };
|
|
33
|
+
89DF336E29F813F600A8B124 /* FireworkVideoUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89DF336D29F813F600A8B124 /* FireworkVideoUITests.swift */; };
|
|
34
|
+
89DF336F29F813F600A8B124 /* FireworkVideoUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DF336129F813F600A8B124 /* FireworkVideoUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
35
|
+
AED4A4262153F7316704EE62 /* Pods_FireworkVideoUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC24AE10C629C46DB3051A00 /* Pods_FireworkVideoUI.framework */; };
|
|
36
|
+
C680202B9D76DB8DCCBAAFD6 /* Pods_FireworkVideoUI_FireworkVideoUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDC72495DF0F7D2E7307137B /* Pods_FireworkVideoUI_FireworkVideoUITests.framework */; };
|
|
37
|
+
/* End PBXBuildFile section */
|
|
38
|
+
|
|
39
|
+
/* Begin PBXContainerItemProxy section */
|
|
40
|
+
89DF336A29F813F600A8B124 /* PBXContainerItemProxy */ = {
|
|
41
|
+
isa = PBXContainerItemProxy;
|
|
42
|
+
containerPortal = 89DF335529F813F600A8B124 /* Project object */;
|
|
43
|
+
proxyType = 1;
|
|
44
|
+
remoteGlobalIDString = 89DF335D29F813F600A8B124;
|
|
45
|
+
remoteInfo = FireworkVideoUI;
|
|
46
|
+
};
|
|
47
|
+
/* End PBXContainerItemProxy section */
|
|
48
|
+
|
|
49
|
+
/* Begin PBXFileReference section */
|
|
50
|
+
0295D432D8B9320FECFD2EF0 /* Pods-FireworkVideoUI.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI.release.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI/Pods-FireworkVideoUI.release.xcconfig"; sourceTree = "<group>"; };
|
|
51
|
+
0526674B3FA99B5D289F8B04 /* Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
52
|
+
43E9D4C021993E1D1128C09C /* Pods-FireworkVideoUI.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI.debug.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI/Pods-FireworkVideoUI.debug.xcconfig"; sourceTree = "<group>"; };
|
|
53
|
+
89CDDD5D2A016440006DD185 /* Swizzle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Swizzle.swift; sourceTree = "<group>"; };
|
|
54
|
+
89CDDD602A016440006DD185 /* UIView+UIHierarchy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+UIHierarchy.swift"; sourceTree = "<group>"; };
|
|
55
|
+
89CDDD622A016440006DD185 /* DispatchQueue+Once.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Once.swift"; sourceTree = "<group>"; };
|
|
56
|
+
89CDDD632A016440006DD185 /* String+Base64.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+Base64.swift"; sourceTree = "<group>"; };
|
|
57
|
+
89CDDD672A016440006DD185 /* UILabel+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+LayoutFlip.swift"; sourceTree = "<group>"; };
|
|
58
|
+
89CDDD682A016440006DD185 /* CALayer+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CALayer+LayoutFlip.swift"; sourceTree = "<group>"; };
|
|
59
|
+
89CDDD692A016440006DD185 /* UIView+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+LayoutFlip.swift"; sourceTree = "<group>"; };
|
|
60
|
+
89CDDD6B2A016440006DD185 /* NSObject+LayoutFlip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+LayoutFlip.swift"; sourceTree = "<group>"; };
|
|
61
|
+
89CDDD6C2A016440006DD185 /* LayoutFlipManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LayoutFlipManager.swift; sourceTree = "<group>"; };
|
|
62
|
+
89CDDD6E2A016440006DD185 /* AppLanguageManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppLanguageManager.swift; sourceTree = "<group>"; };
|
|
63
|
+
89CDDD6F2A016440006DD185 /* LanguageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LanguageUtil.swift; sourceTree = "<group>"; };
|
|
64
|
+
89CDDD722A016440006DD185 /* UITextView+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextView+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
65
|
+
89CDDD732A016440006DD185 /* UIWindow+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIWindow+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
66
|
+
89CDDD742A016440006DD185 /* UITextField+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITextField+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
67
|
+
89CDDD752A016440006DD185 /* UIImageView+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
68
|
+
89CDDD762A016440006DD185 /* UILabel+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
69
|
+
89CDDD772A016440006DD185 /* UIView+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
70
|
+
89CDDD782A016440006DD185 /* UIViewController+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
71
|
+
89CDDD7A2A016440006DD185 /* Bundle+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Bundle+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
72
|
+
89CDDD7B2A016440006DD185 /* NumberFormatter+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NumberFormatter+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
73
|
+
89CDDD7C2A016440006DD185 /* URLSession+AppLanguage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "URLSession+AppLanguage.swift"; sourceTree = "<group>"; };
|
|
74
|
+
89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FireworkVideoUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
75
|
+
89DF336129F813F600A8B124 /* FireworkVideoUI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireworkVideoUI.h; sourceTree = "<group>"; };
|
|
76
|
+
89DF336229F813F600A8B124 /* FireworkVideoUI.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = FireworkVideoUI.docc; sourceTree = "<group>"; };
|
|
77
|
+
89DF336829F813F600A8B124 /* FireworkVideoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FireworkVideoUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
78
|
+
89DF336D29F813F600A8B124 /* FireworkVideoUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FireworkVideoUITests.swift; sourceTree = "<group>"; };
|
|
79
|
+
9CB1172B21699595C412032C /* Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig"; path = "Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig"; sourceTree = "<group>"; };
|
|
80
|
+
FC24AE10C629C46DB3051A00 /* Pods_FireworkVideoUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FireworkVideoUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
81
|
+
FDC72495DF0F7D2E7307137B /* Pods_FireworkVideoUI_FireworkVideoUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FireworkVideoUI_FireworkVideoUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
82
|
+
/* End PBXFileReference section */
|
|
83
|
+
|
|
84
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
85
|
+
89DF335B29F813F600A8B124 /* Frameworks */ = {
|
|
86
|
+
isa = PBXFrameworksBuildPhase;
|
|
87
|
+
buildActionMask = 2147483647;
|
|
88
|
+
files = (
|
|
89
|
+
AED4A4262153F7316704EE62 /* Pods_FireworkVideoUI.framework in Frameworks */,
|
|
90
|
+
);
|
|
91
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
92
|
+
};
|
|
93
|
+
89DF336529F813F600A8B124 /* Frameworks */ = {
|
|
94
|
+
isa = PBXFrameworksBuildPhase;
|
|
95
|
+
buildActionMask = 2147483647;
|
|
96
|
+
files = (
|
|
97
|
+
89DF336929F813F600A8B124 /* FireworkVideoUI.framework in Frameworks */,
|
|
98
|
+
C680202B9D76DB8DCCBAAFD6 /* Pods_FireworkVideoUI_FireworkVideoUITests.framework in Frameworks */,
|
|
99
|
+
);
|
|
100
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
101
|
+
};
|
|
102
|
+
/* End PBXFrameworksBuildPhase section */
|
|
103
|
+
|
|
104
|
+
/* Begin PBXGroup section */
|
|
105
|
+
10002CD714337348ABB5EF18 /* Frameworks */ = {
|
|
106
|
+
isa = PBXGroup;
|
|
107
|
+
children = (
|
|
108
|
+
FC24AE10C629C46DB3051A00 /* Pods_FireworkVideoUI.framework */,
|
|
109
|
+
FDC72495DF0F7D2E7307137B /* Pods_FireworkVideoUI_FireworkVideoUITests.framework */,
|
|
110
|
+
);
|
|
111
|
+
name = Frameworks;
|
|
112
|
+
sourceTree = "<group>";
|
|
113
|
+
};
|
|
114
|
+
89CDDD5B2A016440006DD185 /* Sources */ = {
|
|
115
|
+
isa = PBXGroup;
|
|
116
|
+
children = (
|
|
117
|
+
89CDDD5C2A016440006DD185 /* Utils */,
|
|
118
|
+
89CDDD642A016440006DD185 /* LayoutFlip */,
|
|
119
|
+
89CDDD6D2A016440006DD185 /* AppLanguage */,
|
|
120
|
+
);
|
|
121
|
+
path = Sources;
|
|
122
|
+
sourceTree = "<group>";
|
|
123
|
+
};
|
|
124
|
+
89CDDD5C2A016440006DD185 /* Utils */ = {
|
|
125
|
+
isa = PBXGroup;
|
|
126
|
+
children = (
|
|
127
|
+
89CDDD5D2A016440006DD185 /* Swizzle.swift */,
|
|
128
|
+
89CDDD5E2A016440006DD185 /* Extensions */,
|
|
129
|
+
);
|
|
130
|
+
path = Utils;
|
|
131
|
+
sourceTree = "<group>";
|
|
132
|
+
};
|
|
133
|
+
89CDDD5E2A016440006DD185 /* Extensions */ = {
|
|
134
|
+
isa = PBXGroup;
|
|
135
|
+
children = (
|
|
136
|
+
89CDDD5F2A016440006DD185 /* UIKit */,
|
|
137
|
+
89CDDD612A016440006DD185 /* Foundation */,
|
|
138
|
+
);
|
|
139
|
+
path = Extensions;
|
|
140
|
+
sourceTree = "<group>";
|
|
141
|
+
};
|
|
142
|
+
89CDDD5F2A016440006DD185 /* UIKit */ = {
|
|
143
|
+
isa = PBXGroup;
|
|
144
|
+
children = (
|
|
145
|
+
89CDDD602A016440006DD185 /* UIView+UIHierarchy.swift */,
|
|
146
|
+
);
|
|
147
|
+
path = UIKit;
|
|
148
|
+
sourceTree = "<group>";
|
|
149
|
+
};
|
|
150
|
+
89CDDD612A016440006DD185 /* Foundation */ = {
|
|
151
|
+
isa = PBXGroup;
|
|
152
|
+
children = (
|
|
153
|
+
89CDDD622A016440006DD185 /* DispatchQueue+Once.swift */,
|
|
154
|
+
89CDDD632A016440006DD185 /* String+Base64.swift */,
|
|
155
|
+
);
|
|
156
|
+
path = Foundation;
|
|
157
|
+
sourceTree = "<group>";
|
|
158
|
+
};
|
|
159
|
+
89CDDD642A016440006DD185 /* LayoutFlip */ = {
|
|
160
|
+
isa = PBXGroup;
|
|
161
|
+
children = (
|
|
162
|
+
89CDDD652A016440006DD185 /* Extensions */,
|
|
163
|
+
89CDDD6C2A016440006DD185 /* LayoutFlipManager.swift */,
|
|
164
|
+
);
|
|
165
|
+
path = LayoutFlip;
|
|
166
|
+
sourceTree = "<group>";
|
|
167
|
+
};
|
|
168
|
+
89CDDD652A016440006DD185 /* Extensions */ = {
|
|
169
|
+
isa = PBXGroup;
|
|
170
|
+
children = (
|
|
171
|
+
89CDDD662A016440006DD185 /* UIKit */,
|
|
172
|
+
89CDDD6A2A016440006DD185 /* Foundation */,
|
|
173
|
+
);
|
|
174
|
+
path = Extensions;
|
|
175
|
+
sourceTree = "<group>";
|
|
176
|
+
};
|
|
177
|
+
89CDDD662A016440006DD185 /* UIKit */ = {
|
|
178
|
+
isa = PBXGroup;
|
|
179
|
+
children = (
|
|
180
|
+
89CDDD672A016440006DD185 /* UILabel+LayoutFlip.swift */,
|
|
181
|
+
89CDDD682A016440006DD185 /* CALayer+LayoutFlip.swift */,
|
|
182
|
+
89CDDD692A016440006DD185 /* UIView+LayoutFlip.swift */,
|
|
183
|
+
);
|
|
184
|
+
path = UIKit;
|
|
185
|
+
sourceTree = "<group>";
|
|
186
|
+
};
|
|
187
|
+
89CDDD6A2A016440006DD185 /* Foundation */ = {
|
|
188
|
+
isa = PBXGroup;
|
|
189
|
+
children = (
|
|
190
|
+
89CDDD6B2A016440006DD185 /* NSObject+LayoutFlip.swift */,
|
|
191
|
+
);
|
|
192
|
+
path = Foundation;
|
|
193
|
+
sourceTree = "<group>";
|
|
194
|
+
};
|
|
195
|
+
89CDDD6D2A016440006DD185 /* AppLanguage */ = {
|
|
196
|
+
isa = PBXGroup;
|
|
197
|
+
children = (
|
|
198
|
+
89CDDD6E2A016440006DD185 /* AppLanguageManager.swift */,
|
|
199
|
+
89CDDD6F2A016440006DD185 /* LanguageUtil.swift */,
|
|
200
|
+
89CDDD702A016440006DD185 /* Extensions */,
|
|
201
|
+
);
|
|
202
|
+
path = AppLanguage;
|
|
203
|
+
sourceTree = "<group>";
|
|
204
|
+
};
|
|
205
|
+
89CDDD702A016440006DD185 /* Extensions */ = {
|
|
206
|
+
isa = PBXGroup;
|
|
207
|
+
children = (
|
|
208
|
+
89CDDD712A016440006DD185 /* UIKit */,
|
|
209
|
+
89CDDD792A016440006DD185 /* Foundation */,
|
|
210
|
+
);
|
|
211
|
+
path = Extensions;
|
|
212
|
+
sourceTree = "<group>";
|
|
213
|
+
};
|
|
214
|
+
89CDDD712A016440006DD185 /* UIKit */ = {
|
|
215
|
+
isa = PBXGroup;
|
|
216
|
+
children = (
|
|
217
|
+
89CDDD722A016440006DD185 /* UITextView+AppLanguage.swift */,
|
|
218
|
+
89CDDD732A016440006DD185 /* UIWindow+AppLanguage.swift */,
|
|
219
|
+
89CDDD742A016440006DD185 /* UITextField+AppLanguage.swift */,
|
|
220
|
+
89CDDD752A016440006DD185 /* UIImageView+AppLanguage.swift */,
|
|
221
|
+
89CDDD762A016440006DD185 /* UILabel+AppLanguage.swift */,
|
|
222
|
+
89CDDD772A016440006DD185 /* UIView+AppLanguage.swift */,
|
|
223
|
+
89CDDD782A016440006DD185 /* UIViewController+AppLanguage.swift */,
|
|
224
|
+
);
|
|
225
|
+
path = UIKit;
|
|
226
|
+
sourceTree = "<group>";
|
|
227
|
+
};
|
|
228
|
+
89CDDD792A016440006DD185 /* Foundation */ = {
|
|
229
|
+
isa = PBXGroup;
|
|
230
|
+
children = (
|
|
231
|
+
89CDDD7A2A016440006DD185 /* Bundle+AppLanguage.swift */,
|
|
232
|
+
89CDDD7B2A016440006DD185 /* NumberFormatter+AppLanguage.swift */,
|
|
233
|
+
89CDDD7C2A016440006DD185 /* URLSession+AppLanguage.swift */,
|
|
234
|
+
);
|
|
235
|
+
path = Foundation;
|
|
236
|
+
sourceTree = "<group>";
|
|
237
|
+
};
|
|
238
|
+
89DF335429F813F600A8B124 = {
|
|
239
|
+
isa = PBXGroup;
|
|
240
|
+
children = (
|
|
241
|
+
89DF336029F813F600A8B124 /* FireworkVideoUI */,
|
|
242
|
+
89DF336C29F813F600A8B124 /* FireworkVideoUITests */,
|
|
243
|
+
89DF335F29F813F600A8B124 /* Products */,
|
|
244
|
+
F00682068F9752FDCE48B55B /* Pods */,
|
|
245
|
+
10002CD714337348ABB5EF18 /* Frameworks */,
|
|
246
|
+
);
|
|
247
|
+
sourceTree = "<group>";
|
|
248
|
+
};
|
|
249
|
+
89DF335F29F813F600A8B124 /* Products */ = {
|
|
250
|
+
isa = PBXGroup;
|
|
251
|
+
children = (
|
|
252
|
+
89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */,
|
|
253
|
+
89DF336829F813F600A8B124 /* FireworkVideoUITests.xctest */,
|
|
254
|
+
);
|
|
255
|
+
name = Products;
|
|
256
|
+
sourceTree = "<group>";
|
|
257
|
+
};
|
|
258
|
+
89DF336029F813F600A8B124 /* FireworkVideoUI */ = {
|
|
259
|
+
isa = PBXGroup;
|
|
260
|
+
children = (
|
|
261
|
+
89CDDD5B2A016440006DD185 /* Sources */,
|
|
262
|
+
89DF336129F813F600A8B124 /* FireworkVideoUI.h */,
|
|
263
|
+
89DF336229F813F600A8B124 /* FireworkVideoUI.docc */,
|
|
264
|
+
);
|
|
265
|
+
path = FireworkVideoUI;
|
|
266
|
+
sourceTree = "<group>";
|
|
267
|
+
};
|
|
268
|
+
89DF336C29F813F600A8B124 /* FireworkVideoUITests */ = {
|
|
269
|
+
isa = PBXGroup;
|
|
270
|
+
children = (
|
|
271
|
+
89DF336D29F813F600A8B124 /* FireworkVideoUITests.swift */,
|
|
272
|
+
);
|
|
273
|
+
path = FireworkVideoUITests;
|
|
274
|
+
sourceTree = "<group>";
|
|
275
|
+
};
|
|
276
|
+
F00682068F9752FDCE48B55B /* Pods */ = {
|
|
277
|
+
isa = PBXGroup;
|
|
278
|
+
children = (
|
|
279
|
+
43E9D4C021993E1D1128C09C /* Pods-FireworkVideoUI.debug.xcconfig */,
|
|
280
|
+
0295D432D8B9320FECFD2EF0 /* Pods-FireworkVideoUI.release.xcconfig */,
|
|
281
|
+
0526674B3FA99B5D289F8B04 /* Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig */,
|
|
282
|
+
9CB1172B21699595C412032C /* Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig */,
|
|
283
|
+
);
|
|
284
|
+
path = Pods;
|
|
285
|
+
sourceTree = "<group>";
|
|
286
|
+
};
|
|
287
|
+
/* End PBXGroup section */
|
|
288
|
+
|
|
289
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
290
|
+
89DF335929F813F600A8B124 /* Headers */ = {
|
|
291
|
+
isa = PBXHeadersBuildPhase;
|
|
292
|
+
buildActionMask = 2147483647;
|
|
293
|
+
files = (
|
|
294
|
+
89DF336F29F813F600A8B124 /* FireworkVideoUI.h in Headers */,
|
|
295
|
+
);
|
|
296
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
297
|
+
};
|
|
298
|
+
/* End PBXHeadersBuildPhase section */
|
|
299
|
+
|
|
300
|
+
/* Begin PBXNativeTarget section */
|
|
301
|
+
89DF335D29F813F600A8B124 /* FireworkVideoUI */ = {
|
|
302
|
+
isa = PBXNativeTarget;
|
|
303
|
+
buildConfigurationList = 89DF337229F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUI" */;
|
|
304
|
+
buildPhases = (
|
|
305
|
+
88FF76CA511D81BEBB5DA460 /* [CP] Check Pods Manifest.lock */,
|
|
306
|
+
89DF335929F813F600A8B124 /* Headers */,
|
|
307
|
+
89DF335A29F813F600A8B124 /* Sources */,
|
|
308
|
+
89DF335B29F813F600A8B124 /* Frameworks */,
|
|
309
|
+
89DF335C29F813F600A8B124 /* Resources */,
|
|
310
|
+
);
|
|
311
|
+
buildRules = (
|
|
312
|
+
);
|
|
313
|
+
dependencies = (
|
|
314
|
+
);
|
|
315
|
+
name = FireworkVideoUI;
|
|
316
|
+
productName = FireworkVideoUI;
|
|
317
|
+
productReference = 89DF335E29F813F600A8B124 /* FireworkVideoUI.framework */;
|
|
318
|
+
productType = "com.apple.product-type.framework";
|
|
319
|
+
};
|
|
320
|
+
89DF336729F813F600A8B124 /* FireworkVideoUITests */ = {
|
|
321
|
+
isa = PBXNativeTarget;
|
|
322
|
+
buildConfigurationList = 89DF337529F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUITests" */;
|
|
323
|
+
buildPhases = (
|
|
324
|
+
AD11B2B9C53940AF212B92E7 /* [CP] Check Pods Manifest.lock */,
|
|
325
|
+
89DF336429F813F600A8B124 /* Sources */,
|
|
326
|
+
89DF336529F813F600A8B124 /* Frameworks */,
|
|
327
|
+
89DF336629F813F600A8B124 /* Resources */,
|
|
328
|
+
6C2BDC8A3A425354D82BE358 /* [CP] Embed Pods Frameworks */,
|
|
329
|
+
);
|
|
330
|
+
buildRules = (
|
|
331
|
+
);
|
|
332
|
+
dependencies = (
|
|
333
|
+
89DF336B29F813F600A8B124 /* PBXTargetDependency */,
|
|
334
|
+
);
|
|
335
|
+
name = FireworkVideoUITests;
|
|
336
|
+
productName = FireworkVideoUITests;
|
|
337
|
+
productReference = 89DF336829F813F600A8B124 /* FireworkVideoUITests.xctest */;
|
|
338
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
339
|
+
};
|
|
340
|
+
/* End PBXNativeTarget section */
|
|
341
|
+
|
|
342
|
+
/* Begin PBXProject section */
|
|
343
|
+
89DF335529F813F600A8B124 /* Project object */ = {
|
|
344
|
+
isa = PBXProject;
|
|
345
|
+
attributes = {
|
|
346
|
+
BuildIndependentTargetsInParallel = 1;
|
|
347
|
+
LastSwiftUpdateCheck = 1420;
|
|
348
|
+
LastUpgradeCheck = 1420;
|
|
349
|
+
TargetAttributes = {
|
|
350
|
+
89DF335D29F813F600A8B124 = {
|
|
351
|
+
CreatedOnToolsVersion = 14.2;
|
|
352
|
+
};
|
|
353
|
+
89DF336729F813F600A8B124 = {
|
|
354
|
+
CreatedOnToolsVersion = 14.2;
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
buildConfigurationList = 89DF335829F813F600A8B124 /* Build configuration list for PBXProject "FireworkVideoUI" */;
|
|
359
|
+
compatibilityVersion = "Xcode 14.0";
|
|
360
|
+
developmentRegion = en;
|
|
361
|
+
hasScannedForEncodings = 0;
|
|
362
|
+
knownRegions = (
|
|
363
|
+
en,
|
|
364
|
+
Base,
|
|
365
|
+
);
|
|
366
|
+
mainGroup = 89DF335429F813F600A8B124;
|
|
367
|
+
productRefGroup = 89DF335F29F813F600A8B124 /* Products */;
|
|
368
|
+
projectDirPath = "";
|
|
369
|
+
projectRoot = "";
|
|
370
|
+
targets = (
|
|
371
|
+
89DF335D29F813F600A8B124 /* FireworkVideoUI */,
|
|
372
|
+
89DF336729F813F600A8B124 /* FireworkVideoUITests */,
|
|
373
|
+
);
|
|
374
|
+
};
|
|
375
|
+
/* End PBXProject section */
|
|
376
|
+
|
|
377
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
378
|
+
89DF335C29F813F600A8B124 /* Resources */ = {
|
|
379
|
+
isa = PBXResourcesBuildPhase;
|
|
380
|
+
buildActionMask = 2147483647;
|
|
381
|
+
files = (
|
|
382
|
+
);
|
|
383
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
384
|
+
};
|
|
385
|
+
89DF336629F813F600A8B124 /* Resources */ = {
|
|
386
|
+
isa = PBXResourcesBuildPhase;
|
|
387
|
+
buildActionMask = 2147483647;
|
|
388
|
+
files = (
|
|
389
|
+
);
|
|
390
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
391
|
+
};
|
|
392
|
+
/* End PBXResourcesBuildPhase section */
|
|
393
|
+
|
|
394
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
395
|
+
6C2BDC8A3A425354D82BE358 /* [CP] Embed Pods Frameworks */ = {
|
|
396
|
+
isa = PBXShellScriptBuildPhase;
|
|
397
|
+
buildActionMask = 2147483647;
|
|
398
|
+
files = (
|
|
399
|
+
);
|
|
400
|
+
inputFileListPaths = (
|
|
401
|
+
"${PODS_ROOT}/Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
402
|
+
);
|
|
403
|
+
name = "[CP] Embed Pods Frameworks";
|
|
404
|
+
outputFileListPaths = (
|
|
405
|
+
"${PODS_ROOT}/Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
406
|
+
);
|
|
407
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
408
|
+
shellPath = /bin/sh;
|
|
409
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FireworkVideoUI-FireworkVideoUITests/Pods-FireworkVideoUI-FireworkVideoUITests-frameworks.sh\"\n";
|
|
410
|
+
showEnvVarsInLog = 0;
|
|
411
|
+
};
|
|
412
|
+
88FF76CA511D81BEBB5DA460 /* [CP] Check Pods Manifest.lock */ = {
|
|
413
|
+
isa = PBXShellScriptBuildPhase;
|
|
414
|
+
buildActionMask = 2147483647;
|
|
415
|
+
files = (
|
|
416
|
+
);
|
|
417
|
+
inputFileListPaths = (
|
|
418
|
+
);
|
|
419
|
+
inputPaths = (
|
|
420
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
421
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
422
|
+
);
|
|
423
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
424
|
+
outputFileListPaths = (
|
|
425
|
+
);
|
|
426
|
+
outputPaths = (
|
|
427
|
+
"$(DERIVED_FILE_DIR)/Pods-FireworkVideoUI-checkManifestLockResult.txt",
|
|
428
|
+
);
|
|
429
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
430
|
+
shellPath = /bin/sh;
|
|
431
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
432
|
+
showEnvVarsInLog = 0;
|
|
433
|
+
};
|
|
434
|
+
AD11B2B9C53940AF212B92E7 /* [CP] Check Pods Manifest.lock */ = {
|
|
435
|
+
isa = PBXShellScriptBuildPhase;
|
|
436
|
+
buildActionMask = 2147483647;
|
|
437
|
+
files = (
|
|
438
|
+
);
|
|
439
|
+
inputFileListPaths = (
|
|
440
|
+
);
|
|
441
|
+
inputPaths = (
|
|
442
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
443
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
444
|
+
);
|
|
445
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
446
|
+
outputFileListPaths = (
|
|
447
|
+
);
|
|
448
|
+
outputPaths = (
|
|
449
|
+
"$(DERIVED_FILE_DIR)/Pods-FireworkVideoUI-FireworkVideoUITests-checkManifestLockResult.txt",
|
|
450
|
+
);
|
|
451
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
452
|
+
shellPath = /bin/sh;
|
|
453
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
454
|
+
showEnvVarsInLog = 0;
|
|
455
|
+
};
|
|
456
|
+
/* End PBXShellScriptBuildPhase section */
|
|
457
|
+
|
|
458
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
459
|
+
89DF335A29F813F600A8B124 /* Sources */ = {
|
|
460
|
+
isa = PBXSourcesBuildPhase;
|
|
461
|
+
buildActionMask = 2147483647;
|
|
462
|
+
files = (
|
|
463
|
+
89CDDD8E2A016440006DD185 /* UIViewController+AppLanguage.swift in Sources */,
|
|
464
|
+
89CDDD8F2A016440006DD185 /* Bundle+AppLanguage.swift in Sources */,
|
|
465
|
+
89CDDD912A016440006DD185 /* URLSession+AppLanguage.swift in Sources */,
|
|
466
|
+
89CDDD902A016440006DD185 /* NumberFormatter+AppLanguage.swift in Sources */,
|
|
467
|
+
89CDDD852A016440006DD185 /* LayoutFlipManager.swift in Sources */,
|
|
468
|
+
89CDDD7F2A016440006DD185 /* DispatchQueue+Once.swift in Sources */,
|
|
469
|
+
89CDDD822A016440006DD185 /* CALayer+LayoutFlip.swift in Sources */,
|
|
470
|
+
89CDDD812A016440006DD185 /* UILabel+LayoutFlip.swift in Sources */,
|
|
471
|
+
89CDDD8B2A016440006DD185 /* UIImageView+AppLanguage.swift in Sources */,
|
|
472
|
+
89CDDD7E2A016440006DD185 /* UIView+UIHierarchy.swift in Sources */,
|
|
473
|
+
89CDDD8A2A016440006DD185 /* UITextField+AppLanguage.swift in Sources */,
|
|
474
|
+
89CDDD892A016440006DD185 /* UIWindow+AppLanguage.swift in Sources */,
|
|
475
|
+
89CDDD802A016440006DD185 /* String+Base64.swift in Sources */,
|
|
476
|
+
89CDDD7D2A016440006DD185 /* Swizzle.swift in Sources */,
|
|
477
|
+
89CDDD872A016440006DD185 /* LanguageUtil.swift in Sources */,
|
|
478
|
+
89CDDD8C2A016440006DD185 /* UILabel+AppLanguage.swift in Sources */,
|
|
479
|
+
89CDDD8D2A016440006DD185 /* UIView+AppLanguage.swift in Sources */,
|
|
480
|
+
89DF336329F813F600A8B124 /* FireworkVideoUI.docc in Sources */,
|
|
481
|
+
89CDDD842A016440006DD185 /* NSObject+LayoutFlip.swift in Sources */,
|
|
482
|
+
89CDDD862A016440006DD185 /* AppLanguageManager.swift in Sources */,
|
|
483
|
+
89CDDD882A016440006DD185 /* UITextView+AppLanguage.swift in Sources */,
|
|
484
|
+
89CDDD832A016440006DD185 /* UIView+LayoutFlip.swift in Sources */,
|
|
485
|
+
);
|
|
486
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
487
|
+
};
|
|
488
|
+
89DF336429F813F600A8B124 /* Sources */ = {
|
|
489
|
+
isa = PBXSourcesBuildPhase;
|
|
490
|
+
buildActionMask = 2147483647;
|
|
491
|
+
files = (
|
|
492
|
+
89DF336E29F813F600A8B124 /* FireworkVideoUITests.swift in Sources */,
|
|
493
|
+
);
|
|
494
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
495
|
+
};
|
|
496
|
+
/* End PBXSourcesBuildPhase section */
|
|
497
|
+
|
|
498
|
+
/* Begin PBXTargetDependency section */
|
|
499
|
+
89DF336B29F813F600A8B124 /* PBXTargetDependency */ = {
|
|
500
|
+
isa = PBXTargetDependency;
|
|
501
|
+
target = 89DF335D29F813F600A8B124 /* FireworkVideoUI */;
|
|
502
|
+
targetProxy = 89DF336A29F813F600A8B124 /* PBXContainerItemProxy */;
|
|
503
|
+
};
|
|
504
|
+
/* End PBXTargetDependency section */
|
|
505
|
+
|
|
506
|
+
/* Begin XCBuildConfiguration section */
|
|
507
|
+
89DF337029F813F600A8B124 /* Debug */ = {
|
|
508
|
+
isa = XCBuildConfiguration;
|
|
509
|
+
buildSettings = {
|
|
510
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
511
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
512
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
513
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
514
|
+
CLANG_ENABLE_MODULES = YES;
|
|
515
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
516
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
517
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
518
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
519
|
+
CLANG_WARN_COMMA = YES;
|
|
520
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
521
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
522
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
523
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
524
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
525
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
526
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
527
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
528
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
529
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
530
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
531
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
532
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
533
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
534
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
535
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
536
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
537
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
538
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
539
|
+
COPY_PHASE_STRIP = NO;
|
|
540
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
541
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
542
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
543
|
+
ENABLE_TESTABILITY = YES;
|
|
544
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
545
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
546
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
547
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
548
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
549
|
+
"DEBUG=1",
|
|
550
|
+
"$(inherited)",
|
|
551
|
+
);
|
|
552
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
553
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
554
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
555
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
556
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
557
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
558
|
+
IPHONEOS_DEPLOYMENT_TARGET = 16.2;
|
|
559
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
560
|
+
MTL_FAST_MATH = YES;
|
|
561
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
562
|
+
SDKROOT = iphoneos;
|
|
563
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
564
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
565
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
566
|
+
VERSION_INFO_PREFIX = "";
|
|
567
|
+
};
|
|
568
|
+
name = Debug;
|
|
569
|
+
};
|
|
570
|
+
89DF337129F813F600A8B124 /* Release */ = {
|
|
571
|
+
isa = XCBuildConfiguration;
|
|
572
|
+
buildSettings = {
|
|
573
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
574
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
575
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
576
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
577
|
+
CLANG_ENABLE_MODULES = YES;
|
|
578
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
579
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
580
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
581
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
582
|
+
CLANG_WARN_COMMA = YES;
|
|
583
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
584
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
585
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
586
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
587
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
588
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
589
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
590
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
591
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
592
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
593
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
594
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
595
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
596
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
597
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
598
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
599
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
600
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
601
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
602
|
+
COPY_PHASE_STRIP = NO;
|
|
603
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
604
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
605
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
606
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
607
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
608
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
609
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
610
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
611
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
612
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
613
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
614
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
615
|
+
IPHONEOS_DEPLOYMENT_TARGET = 16.2;
|
|
616
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
617
|
+
MTL_FAST_MATH = YES;
|
|
618
|
+
SDKROOT = iphoneos;
|
|
619
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
620
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
621
|
+
VALIDATE_PRODUCT = YES;
|
|
622
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
623
|
+
VERSION_INFO_PREFIX = "";
|
|
624
|
+
};
|
|
625
|
+
name = Release;
|
|
626
|
+
};
|
|
627
|
+
89DF337329F813F600A8B124 /* Debug */ = {
|
|
628
|
+
isa = XCBuildConfiguration;
|
|
629
|
+
baseConfigurationReference = 43E9D4C021993E1D1128C09C /* Pods-FireworkVideoUI.debug.xcconfig */;
|
|
630
|
+
buildSettings = {
|
|
631
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
|
|
632
|
+
CODE_SIGN_STYLE = Automatic;
|
|
633
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
634
|
+
DEFINES_MODULE = YES;
|
|
635
|
+
DEVELOPMENT_TEAM = "";
|
|
636
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
637
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
638
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
639
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
640
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
641
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
642
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
|
|
643
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
644
|
+
"$(inherited)",
|
|
645
|
+
"@executable_path/Frameworks",
|
|
646
|
+
"@loader_path/Frameworks",
|
|
647
|
+
);
|
|
648
|
+
MARKETING_VERSION = 1.0;
|
|
649
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUI;
|
|
650
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
651
|
+
SKIP_INSTALL = YES;
|
|
652
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
653
|
+
SUPPORTS_MACCATALYST = NO;
|
|
654
|
+
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
|
|
655
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
656
|
+
SWIFT_VERSION = 5.0;
|
|
657
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
658
|
+
};
|
|
659
|
+
name = Debug;
|
|
660
|
+
};
|
|
661
|
+
89DF337429F813F600A8B124 /* Release */ = {
|
|
662
|
+
isa = XCBuildConfiguration;
|
|
663
|
+
baseConfigurationReference = 0295D432D8B9320FECFD2EF0 /* Pods-FireworkVideoUI.release.xcconfig */;
|
|
664
|
+
buildSettings = {
|
|
665
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
|
|
666
|
+
CODE_SIGN_STYLE = Automatic;
|
|
667
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
668
|
+
DEFINES_MODULE = YES;
|
|
669
|
+
DEVELOPMENT_TEAM = "";
|
|
670
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
671
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
672
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
673
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
674
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
675
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
676
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
|
|
677
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
678
|
+
"$(inherited)",
|
|
679
|
+
"@executable_path/Frameworks",
|
|
680
|
+
"@loader_path/Frameworks",
|
|
681
|
+
);
|
|
682
|
+
MARKETING_VERSION = 1.0;
|
|
683
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUI;
|
|
684
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
685
|
+
SKIP_INSTALL = YES;
|
|
686
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
687
|
+
SUPPORTS_MACCATALYST = NO;
|
|
688
|
+
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
|
|
689
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
690
|
+
SWIFT_VERSION = 5.0;
|
|
691
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
692
|
+
};
|
|
693
|
+
name = Release;
|
|
694
|
+
};
|
|
695
|
+
89DF337629F813F600A8B124 /* Debug */ = {
|
|
696
|
+
isa = XCBuildConfiguration;
|
|
697
|
+
baseConfigurationReference = 0526674B3FA99B5D289F8B04 /* Pods-FireworkVideoUI-FireworkVideoUITests.debug.xcconfig */;
|
|
698
|
+
buildSettings = {
|
|
699
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
|
|
700
|
+
CODE_SIGN_STYLE = Automatic;
|
|
701
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
702
|
+
DEVELOPMENT_TEAM = Z24TE4EN73;
|
|
703
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
704
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
|
|
705
|
+
MARKETING_VERSION = 1.0;
|
|
706
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUITests;
|
|
707
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
708
|
+
SWIFT_EMIT_LOC_STRINGS = NO;
|
|
709
|
+
SWIFT_VERSION = 5.0;
|
|
710
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
711
|
+
};
|
|
712
|
+
name = Debug;
|
|
713
|
+
};
|
|
714
|
+
89DF337729F813F600A8B124 /* Release */ = {
|
|
715
|
+
isa = XCBuildConfiguration;
|
|
716
|
+
baseConfigurationReference = 9CB1172B21699595C412032C /* Pods-FireworkVideoUI-FireworkVideoUITests.release.xcconfig */;
|
|
717
|
+
buildSettings = {
|
|
718
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
|
|
719
|
+
CODE_SIGN_STYLE = Automatic;
|
|
720
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
721
|
+
DEVELOPMENT_TEAM = Z24TE4EN73;
|
|
722
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
723
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
|
|
724
|
+
MARKETING_VERSION = 1.0;
|
|
725
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.firework.FireworkVideoUITests;
|
|
726
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
727
|
+
SWIFT_EMIT_LOC_STRINGS = NO;
|
|
728
|
+
SWIFT_VERSION = 5.0;
|
|
729
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
730
|
+
};
|
|
731
|
+
name = Release;
|
|
732
|
+
};
|
|
733
|
+
/* End XCBuildConfiguration section */
|
|
734
|
+
|
|
735
|
+
/* Begin XCConfigurationList section */
|
|
736
|
+
89DF335829F813F600A8B124 /* Build configuration list for PBXProject "FireworkVideoUI" */ = {
|
|
737
|
+
isa = XCConfigurationList;
|
|
738
|
+
buildConfigurations = (
|
|
739
|
+
89DF337029F813F600A8B124 /* Debug */,
|
|
740
|
+
89DF337129F813F600A8B124 /* Release */,
|
|
741
|
+
);
|
|
742
|
+
defaultConfigurationIsVisible = 0;
|
|
743
|
+
defaultConfigurationName = Release;
|
|
744
|
+
};
|
|
745
|
+
89DF337229F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUI" */ = {
|
|
746
|
+
isa = XCConfigurationList;
|
|
747
|
+
buildConfigurations = (
|
|
748
|
+
89DF337329F813F600A8B124 /* Debug */,
|
|
749
|
+
89DF337429F813F600A8B124 /* Release */,
|
|
750
|
+
);
|
|
751
|
+
defaultConfigurationIsVisible = 0;
|
|
752
|
+
defaultConfigurationName = Release;
|
|
753
|
+
};
|
|
754
|
+
89DF337529F813F600A8B124 /* Build configuration list for PBXNativeTarget "FireworkVideoUITests" */ = {
|
|
755
|
+
isa = XCConfigurationList;
|
|
756
|
+
buildConfigurations = (
|
|
757
|
+
89DF337629F813F600A8B124 /* Debug */,
|
|
758
|
+
89DF337729F813F600A8B124 /* Release */,
|
|
759
|
+
);
|
|
760
|
+
defaultConfigurationIsVisible = 0;
|
|
761
|
+
defaultConfigurationName = Release;
|
|
762
|
+
};
|
|
763
|
+
/* End XCConfigurationList section */
|
|
764
|
+
};
|
|
765
|
+
rootObject = 89DF335529F813F600A8B124 /* Project object */;
|
|
766
|
+
}
|