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,1327 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ABIRoot": {
|
|
3
|
+
"kind": "Root",
|
|
4
|
+
"name": "TopLevel",
|
|
5
|
+
"printedName": "TopLevel",
|
|
6
|
+
"children": [
|
|
7
|
+
{
|
|
8
|
+
"kind": "Import",
|
|
9
|
+
"name": "UIKit",
|
|
10
|
+
"printedName": "UIKit",
|
|
11
|
+
"declKind": "Import",
|
|
12
|
+
"moduleName": "FireworkVideoUI",
|
|
13
|
+
"declAttributes": [
|
|
14
|
+
"RawDocComment"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"kind": "Import",
|
|
19
|
+
"name": "FireworkVideo",
|
|
20
|
+
"printedName": "FireworkVideo",
|
|
21
|
+
"declKind": "Import",
|
|
22
|
+
"moduleName": "FireworkVideoUI"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"kind": "Import",
|
|
26
|
+
"name": "Foundation",
|
|
27
|
+
"printedName": "Foundation",
|
|
28
|
+
"declKind": "Import",
|
|
29
|
+
"moduleName": "FireworkVideoUI",
|
|
30
|
+
"declAttributes": [
|
|
31
|
+
"RawDocComment"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"kind": "Import",
|
|
36
|
+
"name": "FireworkVideo",
|
|
37
|
+
"printedName": "FireworkVideo",
|
|
38
|
+
"declKind": "Import",
|
|
39
|
+
"moduleName": "FireworkVideoUI"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"kind": "Import",
|
|
43
|
+
"name": "Foundation",
|
|
44
|
+
"printedName": "Foundation",
|
|
45
|
+
"declKind": "Import",
|
|
46
|
+
"moduleName": "FireworkVideoUI",
|
|
47
|
+
"declAttributes": [
|
|
48
|
+
"RawDocComment"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"kind": "Import",
|
|
53
|
+
"name": "Foundation",
|
|
54
|
+
"printedName": "Foundation",
|
|
55
|
+
"declKind": "Import",
|
|
56
|
+
"moduleName": "FireworkVideoUI",
|
|
57
|
+
"declAttributes": [
|
|
58
|
+
"RawDocComment"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"kind": "Import",
|
|
63
|
+
"name": "UIKit",
|
|
64
|
+
"printedName": "UIKit",
|
|
65
|
+
"declKind": "Import",
|
|
66
|
+
"moduleName": "FireworkVideoUI",
|
|
67
|
+
"declAttributes": [
|
|
68
|
+
"RawDocComment"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"kind": "Import",
|
|
73
|
+
"name": "Foundation",
|
|
74
|
+
"printedName": "Foundation",
|
|
75
|
+
"declKind": "Import",
|
|
76
|
+
"moduleName": "FireworkVideoUI",
|
|
77
|
+
"declAttributes": [
|
|
78
|
+
"RawDocComment"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"kind": "Import",
|
|
83
|
+
"name": "UIKit",
|
|
84
|
+
"printedName": "UIKit",
|
|
85
|
+
"declKind": "Import",
|
|
86
|
+
"moduleName": "FireworkVideoUI",
|
|
87
|
+
"declAttributes": [
|
|
88
|
+
"RawDocComment"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"kind": "Import",
|
|
93
|
+
"name": "UIKit",
|
|
94
|
+
"printedName": "UIKit",
|
|
95
|
+
"declKind": "Import",
|
|
96
|
+
"moduleName": "FireworkVideoUI",
|
|
97
|
+
"declAttributes": [
|
|
98
|
+
"RawDocComment"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"kind": "Import",
|
|
103
|
+
"name": "UIKit",
|
|
104
|
+
"printedName": "UIKit",
|
|
105
|
+
"declKind": "Import",
|
|
106
|
+
"moduleName": "FireworkVideoUI",
|
|
107
|
+
"declAttributes": [
|
|
108
|
+
"RawDocComment"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"kind": "Import",
|
|
113
|
+
"name": "FireworkVideo",
|
|
114
|
+
"printedName": "FireworkVideo",
|
|
115
|
+
"declKind": "Import",
|
|
116
|
+
"moduleName": "FireworkVideoUI"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"kind": "Import",
|
|
120
|
+
"name": "UIKit",
|
|
121
|
+
"printedName": "UIKit",
|
|
122
|
+
"declKind": "Import",
|
|
123
|
+
"moduleName": "FireworkVideoUI",
|
|
124
|
+
"declAttributes": [
|
|
125
|
+
"RawDocComment"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"kind": "Import",
|
|
130
|
+
"name": "FireworkVideo",
|
|
131
|
+
"printedName": "FireworkVideo",
|
|
132
|
+
"declKind": "Import",
|
|
133
|
+
"moduleName": "FireworkVideoUI"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"kind": "Import",
|
|
137
|
+
"name": "UIKit",
|
|
138
|
+
"printedName": "UIKit",
|
|
139
|
+
"declKind": "Import",
|
|
140
|
+
"moduleName": "FireworkVideoUI",
|
|
141
|
+
"declAttributes": [
|
|
142
|
+
"RawDocComment"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"kind": "Import",
|
|
147
|
+
"name": "UIKit",
|
|
148
|
+
"printedName": "UIKit",
|
|
149
|
+
"declKind": "Import",
|
|
150
|
+
"moduleName": "FireworkVideoUI",
|
|
151
|
+
"declAttributes": [
|
|
152
|
+
"RawDocComment"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"kind": "Import",
|
|
157
|
+
"name": "FireworkVideo",
|
|
158
|
+
"printedName": "FireworkVideo",
|
|
159
|
+
"declKind": "Import",
|
|
160
|
+
"moduleName": "FireworkVideoUI"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"kind": "Import",
|
|
164
|
+
"name": "Foundation",
|
|
165
|
+
"printedName": "Foundation",
|
|
166
|
+
"declKind": "Import",
|
|
167
|
+
"moduleName": "FireworkVideoUI",
|
|
168
|
+
"declAttributes": [
|
|
169
|
+
"RawDocComment"
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"kind": "Import",
|
|
174
|
+
"name": "Foundation",
|
|
175
|
+
"printedName": "Foundation",
|
|
176
|
+
"declKind": "Import",
|
|
177
|
+
"moduleName": "FireworkVideoUI",
|
|
178
|
+
"declAttributes": [
|
|
179
|
+
"RawDocComment"
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"kind": "TypeDecl",
|
|
184
|
+
"name": "Swizzle",
|
|
185
|
+
"printedName": "Swizzle",
|
|
186
|
+
"children": [
|
|
187
|
+
{
|
|
188
|
+
"kind": "Function",
|
|
189
|
+
"name": "swizzleSelector",
|
|
190
|
+
"printedName": "swizzleSelector(cls:originalSelector:customSelector:)",
|
|
191
|
+
"children": [
|
|
192
|
+
{
|
|
193
|
+
"kind": "TypeNominal",
|
|
194
|
+
"name": "Void",
|
|
195
|
+
"printedName": "()"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"kind": "TypeNominal",
|
|
199
|
+
"name": "ExistentialMetatype",
|
|
200
|
+
"printedName": "AnyObject.Type",
|
|
201
|
+
"children": [
|
|
202
|
+
{
|
|
203
|
+
"kind": "TypeNominal",
|
|
204
|
+
"name": "ProtocolComposition",
|
|
205
|
+
"printedName": "AnyObject"
|
|
206
|
+
}
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"kind": "TypeNominal",
|
|
211
|
+
"name": "Selector",
|
|
212
|
+
"printedName": "ObjectiveC.Selector",
|
|
213
|
+
"usr": "s:10ObjectiveC8SelectorV"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"kind": "TypeNominal",
|
|
217
|
+
"name": "Selector",
|
|
218
|
+
"printedName": "ObjectiveC.Selector",
|
|
219
|
+
"usr": "s:10ObjectiveC8SelectorV"
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"declKind": "Func",
|
|
223
|
+
"usr": "s:15FireworkVideoUI7SwizzleC15swizzleSelector3cls08originalF006customF0yyXlXp_10ObjectiveC0F0VAJtFZ",
|
|
224
|
+
"mangledName": "$s15FireworkVideoUI7SwizzleC15swizzleSelector3cls08originalF006customF0yyXlXp_10ObjectiveC0F0VAJtFZ",
|
|
225
|
+
"moduleName": "FireworkVideoUI",
|
|
226
|
+
"static": true,
|
|
227
|
+
"declAttributes": [
|
|
228
|
+
"Final",
|
|
229
|
+
"AccessControl"
|
|
230
|
+
],
|
|
231
|
+
"funcSelfKind": "NonMutating"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"kind": "Function",
|
|
235
|
+
"name": "swizzleClassSelector",
|
|
236
|
+
"printedName": "swizzleClassSelector(cls:originalSelector:customSelector:)",
|
|
237
|
+
"children": [
|
|
238
|
+
{
|
|
239
|
+
"kind": "TypeNominal",
|
|
240
|
+
"name": "Void",
|
|
241
|
+
"printedName": "()"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"kind": "TypeNominal",
|
|
245
|
+
"name": "ExistentialMetatype",
|
|
246
|
+
"printedName": "AnyObject.Type",
|
|
247
|
+
"children": [
|
|
248
|
+
{
|
|
249
|
+
"kind": "TypeNominal",
|
|
250
|
+
"name": "ProtocolComposition",
|
|
251
|
+
"printedName": "AnyObject"
|
|
252
|
+
}
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"kind": "TypeNominal",
|
|
257
|
+
"name": "Selector",
|
|
258
|
+
"printedName": "ObjectiveC.Selector",
|
|
259
|
+
"usr": "s:10ObjectiveC8SelectorV"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"kind": "TypeNominal",
|
|
263
|
+
"name": "Selector",
|
|
264
|
+
"printedName": "ObjectiveC.Selector",
|
|
265
|
+
"usr": "s:10ObjectiveC8SelectorV"
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
"declKind": "Func",
|
|
269
|
+
"usr": "s:15FireworkVideoUI7SwizzleC20swizzleClassSelector3cls08originalG006customG0yyXlXp_10ObjectiveC0G0VAJtFZ",
|
|
270
|
+
"mangledName": "$s15FireworkVideoUI7SwizzleC20swizzleClassSelector3cls08originalG006customG0yyXlXp_10ObjectiveC0G0VAJtFZ",
|
|
271
|
+
"moduleName": "FireworkVideoUI",
|
|
272
|
+
"static": true,
|
|
273
|
+
"declAttributes": [
|
|
274
|
+
"Final",
|
|
275
|
+
"AccessControl"
|
|
276
|
+
],
|
|
277
|
+
"funcSelfKind": "NonMutating"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"declKind": "Class",
|
|
281
|
+
"usr": "s:15FireworkVideoUI7SwizzleC",
|
|
282
|
+
"mangledName": "$s15FireworkVideoUI7SwizzleC",
|
|
283
|
+
"moduleName": "FireworkVideoUI",
|
|
284
|
+
"declAttributes": [
|
|
285
|
+
"AccessControl"
|
|
286
|
+
],
|
|
287
|
+
"hasMissingDesignatedInitializers": true
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"kind": "Import",
|
|
291
|
+
"name": "Foundation",
|
|
292
|
+
"printedName": "Foundation",
|
|
293
|
+
"declKind": "Import",
|
|
294
|
+
"moduleName": "FireworkVideoUI",
|
|
295
|
+
"declAttributes": [
|
|
296
|
+
"RawDocComment"
|
|
297
|
+
]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"kind": "Import",
|
|
301
|
+
"name": "UIKit",
|
|
302
|
+
"printedName": "UIKit",
|
|
303
|
+
"declKind": "Import",
|
|
304
|
+
"moduleName": "FireworkVideoUI",
|
|
305
|
+
"declAttributes": [
|
|
306
|
+
"RawDocComment"
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"kind": "Import",
|
|
311
|
+
"name": "UIKit",
|
|
312
|
+
"printedName": "UIKit",
|
|
313
|
+
"declKind": "Import",
|
|
314
|
+
"moduleName": "FireworkVideoUI",
|
|
315
|
+
"declAttributes": [
|
|
316
|
+
"RawDocComment"
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"kind": "Import",
|
|
321
|
+
"name": "FireworkVideo",
|
|
322
|
+
"printedName": "FireworkVideo",
|
|
323
|
+
"declKind": "Import",
|
|
324
|
+
"moduleName": "FireworkVideoUI"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"kind": "Import",
|
|
328
|
+
"name": "Foundation",
|
|
329
|
+
"printedName": "Foundation",
|
|
330
|
+
"declKind": "Import",
|
|
331
|
+
"moduleName": "FireworkVideoUI",
|
|
332
|
+
"declAttributes": [
|
|
333
|
+
"RawDocComment"
|
|
334
|
+
]
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"kind": "Import",
|
|
338
|
+
"name": "UIKit",
|
|
339
|
+
"printedName": "UIKit",
|
|
340
|
+
"declKind": "Import",
|
|
341
|
+
"moduleName": "FireworkVideoUI",
|
|
342
|
+
"declAttributes": [
|
|
343
|
+
"RawDocComment"
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"kind": "TypeDecl",
|
|
348
|
+
"name": "AppLanguageManager",
|
|
349
|
+
"printedName": "AppLanguageManager",
|
|
350
|
+
"children": [
|
|
351
|
+
{
|
|
352
|
+
"kind": "TypeDecl",
|
|
353
|
+
"name": "NotificationName",
|
|
354
|
+
"printedName": "NotificationName",
|
|
355
|
+
"children": [
|
|
356
|
+
{
|
|
357
|
+
"kind": "Var",
|
|
358
|
+
"name": "AppLanguageChanged",
|
|
359
|
+
"printedName": "AppLanguageChanged",
|
|
360
|
+
"children": [
|
|
361
|
+
{
|
|
362
|
+
"kind": "TypeNominal",
|
|
363
|
+
"name": "Name",
|
|
364
|
+
"printedName": "Foundation.NSNotification.Name",
|
|
365
|
+
"usr": "c:@T@NSNotificationName"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"declKind": "Var",
|
|
369
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avpZ",
|
|
370
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avpZ",
|
|
371
|
+
"moduleName": "FireworkVideoUI",
|
|
372
|
+
"static": true,
|
|
373
|
+
"declAttributes": [
|
|
374
|
+
"HasInitialValue",
|
|
375
|
+
"HasStorage",
|
|
376
|
+
"AccessControl",
|
|
377
|
+
"RawDocComment"
|
|
378
|
+
],
|
|
379
|
+
"isLet": true,
|
|
380
|
+
"hasStorage": true,
|
|
381
|
+
"accessors": [
|
|
382
|
+
{
|
|
383
|
+
"kind": "Accessor",
|
|
384
|
+
"name": "Get",
|
|
385
|
+
"printedName": "Get()",
|
|
386
|
+
"children": [
|
|
387
|
+
{
|
|
388
|
+
"kind": "TypeNominal",
|
|
389
|
+
"name": "Name",
|
|
390
|
+
"printedName": "Foundation.NSNotification.Name",
|
|
391
|
+
"usr": "c:@T@NSNotificationName"
|
|
392
|
+
}
|
|
393
|
+
],
|
|
394
|
+
"declKind": "Accessor",
|
|
395
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avgZ",
|
|
396
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avgZ",
|
|
397
|
+
"moduleName": "FireworkVideoUI",
|
|
398
|
+
"static": true,
|
|
399
|
+
"implicit": true,
|
|
400
|
+
"accessorKind": "get"
|
|
401
|
+
}
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
],
|
|
405
|
+
"declKind": "Struct",
|
|
406
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC16NotificationNameV",
|
|
407
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC16NotificationNameV",
|
|
408
|
+
"moduleName": "FireworkVideoUI",
|
|
409
|
+
"declAttributes": [
|
|
410
|
+
"AccessControl"
|
|
411
|
+
]
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"kind": "Var",
|
|
415
|
+
"name": "shared",
|
|
416
|
+
"printedName": "shared",
|
|
417
|
+
"children": [
|
|
418
|
+
{
|
|
419
|
+
"kind": "TypeNominal",
|
|
420
|
+
"name": "AppLanguageManager",
|
|
421
|
+
"printedName": "FireworkVideoUI.AppLanguageManager",
|
|
422
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC"
|
|
423
|
+
}
|
|
424
|
+
],
|
|
425
|
+
"declKind": "Var",
|
|
426
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC6sharedACvpZ",
|
|
427
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC6sharedACvpZ",
|
|
428
|
+
"moduleName": "FireworkVideoUI",
|
|
429
|
+
"static": true,
|
|
430
|
+
"declAttributes": [
|
|
431
|
+
"HasInitialValue",
|
|
432
|
+
"Final",
|
|
433
|
+
"HasStorage",
|
|
434
|
+
"AccessControl"
|
|
435
|
+
],
|
|
436
|
+
"isLet": true,
|
|
437
|
+
"hasStorage": true,
|
|
438
|
+
"accessors": [
|
|
439
|
+
{
|
|
440
|
+
"kind": "Accessor",
|
|
441
|
+
"name": "Get",
|
|
442
|
+
"printedName": "Get()",
|
|
443
|
+
"children": [
|
|
444
|
+
{
|
|
445
|
+
"kind": "TypeNominal",
|
|
446
|
+
"name": "AppLanguageManager",
|
|
447
|
+
"printedName": "FireworkVideoUI.AppLanguageManager",
|
|
448
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC"
|
|
449
|
+
}
|
|
450
|
+
],
|
|
451
|
+
"declKind": "Accessor",
|
|
452
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC6sharedACvgZ",
|
|
453
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC6sharedACvgZ",
|
|
454
|
+
"moduleName": "FireworkVideoUI",
|
|
455
|
+
"static": true,
|
|
456
|
+
"implicit": true,
|
|
457
|
+
"declAttributes": [
|
|
458
|
+
"Final"
|
|
459
|
+
],
|
|
460
|
+
"accessorKind": "get"
|
|
461
|
+
}
|
|
462
|
+
]
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"kind": "Var",
|
|
466
|
+
"name": "appLanguage",
|
|
467
|
+
"printedName": "appLanguage",
|
|
468
|
+
"children": [
|
|
469
|
+
{
|
|
470
|
+
"kind": "TypeNominal",
|
|
471
|
+
"name": "Optional",
|
|
472
|
+
"printedName": "Swift.String?",
|
|
473
|
+
"children": [
|
|
474
|
+
{
|
|
475
|
+
"kind": "TypeNominal",
|
|
476
|
+
"name": "String",
|
|
477
|
+
"printedName": "Swift.String",
|
|
478
|
+
"usr": "s:SS"
|
|
479
|
+
}
|
|
480
|
+
],
|
|
481
|
+
"usr": "s:Sq"
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
"declKind": "Var",
|
|
485
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvp",
|
|
486
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvp",
|
|
487
|
+
"moduleName": "FireworkVideoUI",
|
|
488
|
+
"declAttributes": [
|
|
489
|
+
"HasInitialValue",
|
|
490
|
+
"HasStorage",
|
|
491
|
+
"SetterAccess",
|
|
492
|
+
"AccessControl",
|
|
493
|
+
"RawDocComment"
|
|
494
|
+
],
|
|
495
|
+
"hasStorage": true,
|
|
496
|
+
"accessors": [
|
|
497
|
+
{
|
|
498
|
+
"kind": "Accessor",
|
|
499
|
+
"name": "Get",
|
|
500
|
+
"printedName": "Get()",
|
|
501
|
+
"children": [
|
|
502
|
+
{
|
|
503
|
+
"kind": "TypeNominal",
|
|
504
|
+
"name": "Optional",
|
|
505
|
+
"printedName": "Swift.String?",
|
|
506
|
+
"children": [
|
|
507
|
+
{
|
|
508
|
+
"kind": "TypeNominal",
|
|
509
|
+
"name": "String",
|
|
510
|
+
"printedName": "Swift.String",
|
|
511
|
+
"usr": "s:SS"
|
|
512
|
+
}
|
|
513
|
+
],
|
|
514
|
+
"usr": "s:Sq"
|
|
515
|
+
}
|
|
516
|
+
],
|
|
517
|
+
"declKind": "Accessor",
|
|
518
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvg",
|
|
519
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvg",
|
|
520
|
+
"moduleName": "FireworkVideoUI",
|
|
521
|
+
"implicit": true,
|
|
522
|
+
"accessorKind": "get"
|
|
523
|
+
}
|
|
524
|
+
]
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"kind": "Function",
|
|
528
|
+
"name": "changeAppLanguage",
|
|
529
|
+
"printedName": "changeAppLanguage(_:)",
|
|
530
|
+
"children": [
|
|
531
|
+
{
|
|
532
|
+
"kind": "TypeNominal",
|
|
533
|
+
"name": "Bool",
|
|
534
|
+
"printedName": "Swift.Bool",
|
|
535
|
+
"usr": "s:Sb"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"kind": "TypeNominal",
|
|
539
|
+
"name": "Optional",
|
|
540
|
+
"printedName": "Swift.String?",
|
|
541
|
+
"children": [
|
|
542
|
+
{
|
|
543
|
+
"kind": "TypeNominal",
|
|
544
|
+
"name": "String",
|
|
545
|
+
"printedName": "Swift.String",
|
|
546
|
+
"usr": "s:SS"
|
|
547
|
+
}
|
|
548
|
+
],
|
|
549
|
+
"usr": "s:Sq"
|
|
550
|
+
}
|
|
551
|
+
],
|
|
552
|
+
"declKind": "Func",
|
|
553
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC06changedE0ySbSSSgF",
|
|
554
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC06changedE0ySbSSSgF",
|
|
555
|
+
"moduleName": "FireworkVideoUI",
|
|
556
|
+
"declAttributes": [
|
|
557
|
+
"AccessControl",
|
|
558
|
+
"DiscardableResult",
|
|
559
|
+
"RawDocComment"
|
|
560
|
+
],
|
|
561
|
+
"funcSelfKind": "NonMutating"
|
|
562
|
+
}
|
|
563
|
+
],
|
|
564
|
+
"declKind": "Class",
|
|
565
|
+
"usr": "s:15FireworkVideoUI18AppLanguageManagerC",
|
|
566
|
+
"mangledName": "$s15FireworkVideoUI18AppLanguageManagerC",
|
|
567
|
+
"moduleName": "FireworkVideoUI",
|
|
568
|
+
"declAttributes": [
|
|
569
|
+
"AccessControl",
|
|
570
|
+
"RawDocComment"
|
|
571
|
+
],
|
|
572
|
+
"hasMissingDesignatedInitializers": true
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"kind": "Import",
|
|
576
|
+
"name": "UIKit",
|
|
577
|
+
"printedName": "UIKit",
|
|
578
|
+
"declKind": "Import",
|
|
579
|
+
"moduleName": "FireworkVideoUI",
|
|
580
|
+
"declAttributes": [
|
|
581
|
+
"RawDocComment"
|
|
582
|
+
]
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"kind": "Import",
|
|
586
|
+
"name": "UIKit",
|
|
587
|
+
"printedName": "UIKit",
|
|
588
|
+
"declKind": "Import",
|
|
589
|
+
"moduleName": "FireworkVideoUI",
|
|
590
|
+
"declAttributes": [
|
|
591
|
+
"RawDocComment"
|
|
592
|
+
]
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"kind": "Import",
|
|
596
|
+
"name": "WebKit",
|
|
597
|
+
"printedName": "WebKit",
|
|
598
|
+
"declKind": "Import",
|
|
599
|
+
"moduleName": "FireworkVideoUI"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"kind": "TypeDecl",
|
|
603
|
+
"name": "DispatchQueue",
|
|
604
|
+
"printedName": "DispatchQueue",
|
|
605
|
+
"children": [
|
|
606
|
+
{
|
|
607
|
+
"kind": "Function",
|
|
608
|
+
"name": "once",
|
|
609
|
+
"printedName": "once(file:function:line:block:)",
|
|
610
|
+
"children": [
|
|
611
|
+
{
|
|
612
|
+
"kind": "TypeNominal",
|
|
613
|
+
"name": "Void",
|
|
614
|
+
"printedName": "()"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"kind": "TypeNominal",
|
|
618
|
+
"name": "String",
|
|
619
|
+
"printedName": "Swift.String",
|
|
620
|
+
"hasDefaultArg": true,
|
|
621
|
+
"usr": "s:SS"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"kind": "TypeNominal",
|
|
625
|
+
"name": "String",
|
|
626
|
+
"printedName": "Swift.String",
|
|
627
|
+
"hasDefaultArg": true,
|
|
628
|
+
"usr": "s:SS"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"kind": "TypeNominal",
|
|
632
|
+
"name": "Int",
|
|
633
|
+
"printedName": "Swift.Int",
|
|
634
|
+
"hasDefaultArg": true,
|
|
635
|
+
"usr": "s:Si"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"kind": "TypeFunc",
|
|
639
|
+
"name": "Function",
|
|
640
|
+
"printedName": "() -> ()",
|
|
641
|
+
"children": [
|
|
642
|
+
{
|
|
643
|
+
"kind": "TypeNominal",
|
|
644
|
+
"name": "Void",
|
|
645
|
+
"printedName": "()"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"kind": "TypeNominal",
|
|
649
|
+
"name": "Void",
|
|
650
|
+
"printedName": "()"
|
|
651
|
+
}
|
|
652
|
+
],
|
|
653
|
+
"typeAttributes": [
|
|
654
|
+
"noescape"
|
|
655
|
+
]
|
|
656
|
+
}
|
|
657
|
+
],
|
|
658
|
+
"declKind": "Func",
|
|
659
|
+
"usr": "s:So17OS_dispatch_queueC15FireworkVideoUIE4once4file8function4line5blockySS_SSSiyyXEtFZ",
|
|
660
|
+
"mangledName": "$sSo17OS_dispatch_queueC15FireworkVideoUIE4once4file8function4line5blockySS_SSSiyyXEtFZ",
|
|
661
|
+
"moduleName": "FireworkVideoUI",
|
|
662
|
+
"static": true,
|
|
663
|
+
"declAttributes": [
|
|
664
|
+
"RawDocComment"
|
|
665
|
+
],
|
|
666
|
+
"isFromExtension": true,
|
|
667
|
+
"funcSelfKind": "NonMutating"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"kind": "Function",
|
|
671
|
+
"name": "once",
|
|
672
|
+
"printedName": "once(token:block:)",
|
|
673
|
+
"children": [
|
|
674
|
+
{
|
|
675
|
+
"kind": "TypeNominal",
|
|
676
|
+
"name": "Void",
|
|
677
|
+
"printedName": "()"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"kind": "TypeNominal",
|
|
681
|
+
"name": "String",
|
|
682
|
+
"printedName": "Swift.String",
|
|
683
|
+
"usr": "s:SS"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"kind": "TypeFunc",
|
|
687
|
+
"name": "Function",
|
|
688
|
+
"printedName": "() -> ()",
|
|
689
|
+
"children": [
|
|
690
|
+
{
|
|
691
|
+
"kind": "TypeNominal",
|
|
692
|
+
"name": "Void",
|
|
693
|
+
"printedName": "()"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"kind": "TypeNominal",
|
|
697
|
+
"name": "Void",
|
|
698
|
+
"printedName": "()"
|
|
699
|
+
}
|
|
700
|
+
],
|
|
701
|
+
"typeAttributes": [
|
|
702
|
+
"noescape"
|
|
703
|
+
]
|
|
704
|
+
}
|
|
705
|
+
],
|
|
706
|
+
"declKind": "Func",
|
|
707
|
+
"usr": "s:So17OS_dispatch_queueC15FireworkVideoUIE4once5token5blockySS_yyXEtFZ",
|
|
708
|
+
"mangledName": "$sSo17OS_dispatch_queueC15FireworkVideoUIE4once5token5blockySS_yyXEtFZ",
|
|
709
|
+
"moduleName": "FireworkVideoUI",
|
|
710
|
+
"static": true,
|
|
711
|
+
"declAttributes": [
|
|
712
|
+
"RawDocComment"
|
|
713
|
+
],
|
|
714
|
+
"isFromExtension": true,
|
|
715
|
+
"funcSelfKind": "NonMutating"
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"declKind": "Class",
|
|
719
|
+
"usr": "c:objc(cs)OS_dispatch_queue",
|
|
720
|
+
"moduleName": "Dispatch",
|
|
721
|
+
"isOpen": true,
|
|
722
|
+
"objc_name": "OS_dispatch_queue",
|
|
723
|
+
"declAttributes": [
|
|
724
|
+
"ObjC",
|
|
725
|
+
"Dynamic"
|
|
726
|
+
],
|
|
727
|
+
"superclassUsr": "c:objc(cs)OS_dispatch_object",
|
|
728
|
+
"isExternal": true,
|
|
729
|
+
"inheritsConvenienceInitializers": true,
|
|
730
|
+
"superclassNames": [
|
|
731
|
+
"Dispatch.DispatchObject",
|
|
732
|
+
"os_object.OS_object",
|
|
733
|
+
"ObjectiveC.NSObject"
|
|
734
|
+
],
|
|
735
|
+
"conformances": [
|
|
736
|
+
{
|
|
737
|
+
"kind": "Conformance",
|
|
738
|
+
"name": "Equatable",
|
|
739
|
+
"printedName": "Equatable",
|
|
740
|
+
"usr": "s:SQ",
|
|
741
|
+
"mangledName": "$sSQ"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"kind": "Conformance",
|
|
745
|
+
"name": "Hashable",
|
|
746
|
+
"printedName": "Hashable",
|
|
747
|
+
"usr": "s:SH",
|
|
748
|
+
"mangledName": "$sSH"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"kind": "Conformance",
|
|
752
|
+
"name": "CVarArg",
|
|
753
|
+
"printedName": "CVarArg",
|
|
754
|
+
"usr": "s:s7CVarArgP",
|
|
755
|
+
"mangledName": "$ss7CVarArgP"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"kind": "Conformance",
|
|
759
|
+
"name": "_KeyValueCodingAndObservingPublishing",
|
|
760
|
+
"printedName": "_KeyValueCodingAndObservingPublishing",
|
|
761
|
+
"usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
|
|
762
|
+
"mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"kind": "Conformance",
|
|
766
|
+
"name": "_KeyValueCodingAndObserving",
|
|
767
|
+
"printedName": "_KeyValueCodingAndObserving",
|
|
768
|
+
"usr": "s:10Foundation27_KeyValueCodingAndObservingP",
|
|
769
|
+
"mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"kind": "Conformance",
|
|
773
|
+
"name": "CustomStringConvertible",
|
|
774
|
+
"printedName": "CustomStringConvertible",
|
|
775
|
+
"usr": "s:s23CustomStringConvertibleP",
|
|
776
|
+
"mangledName": "$ss23CustomStringConvertibleP"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"kind": "Conformance",
|
|
780
|
+
"name": "CustomDebugStringConvertible",
|
|
781
|
+
"printedName": "CustomDebugStringConvertible",
|
|
782
|
+
"usr": "s:s28CustomDebugStringConvertibleP",
|
|
783
|
+
"mangledName": "$ss28CustomDebugStringConvertibleP"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"kind": "Conformance",
|
|
787
|
+
"name": "Scheduler",
|
|
788
|
+
"printedName": "Scheduler",
|
|
789
|
+
"children": [
|
|
790
|
+
{
|
|
791
|
+
"kind": "TypeWitness",
|
|
792
|
+
"name": "SchedulerTimeType",
|
|
793
|
+
"printedName": "SchedulerTimeType",
|
|
794
|
+
"children": [
|
|
795
|
+
{
|
|
796
|
+
"kind": "TypeNominal",
|
|
797
|
+
"name": "SchedulerTimeType",
|
|
798
|
+
"printedName": "Dispatch.DispatchQueue.SchedulerTimeType",
|
|
799
|
+
"usr": "s:So17OS_dispatch_queueC8DispatchE17SchedulerTimeTypeV"
|
|
800
|
+
}
|
|
801
|
+
]
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"kind": "TypeWitness",
|
|
805
|
+
"name": "SchedulerOptions",
|
|
806
|
+
"printedName": "SchedulerOptions",
|
|
807
|
+
"children": [
|
|
808
|
+
{
|
|
809
|
+
"kind": "TypeNominal",
|
|
810
|
+
"name": "SchedulerOptions",
|
|
811
|
+
"printedName": "Dispatch.DispatchQueue.SchedulerOptions",
|
|
812
|
+
"usr": "s:So17OS_dispatch_queueC8DispatchE16SchedulerOptionsV"
|
|
813
|
+
}
|
|
814
|
+
]
|
|
815
|
+
}
|
|
816
|
+
],
|
|
817
|
+
"usr": "s:7Combine9SchedulerP",
|
|
818
|
+
"mangledName": "$s7Combine9SchedulerP"
|
|
819
|
+
}
|
|
820
|
+
]
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"kind": "TypeDecl",
|
|
824
|
+
"name": "UIView",
|
|
825
|
+
"printedName": "UIView",
|
|
826
|
+
"children": [
|
|
827
|
+
{
|
|
828
|
+
"kind": "Var",
|
|
829
|
+
"name": "parentViewController",
|
|
830
|
+
"printedName": "parentViewController",
|
|
831
|
+
"children": [
|
|
832
|
+
{
|
|
833
|
+
"kind": "TypeNominal",
|
|
834
|
+
"name": "Optional",
|
|
835
|
+
"printedName": "UIKit.UIViewController?",
|
|
836
|
+
"children": [
|
|
837
|
+
{
|
|
838
|
+
"kind": "TypeNominal",
|
|
839
|
+
"name": "UIViewController",
|
|
840
|
+
"printedName": "UIKit.UIViewController",
|
|
841
|
+
"usr": "c:objc(cs)UIViewController"
|
|
842
|
+
}
|
|
843
|
+
],
|
|
844
|
+
"usr": "s:Sq"
|
|
845
|
+
}
|
|
846
|
+
],
|
|
847
|
+
"declKind": "Var",
|
|
848
|
+
"usr": "s:So6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvp",
|
|
849
|
+
"mangledName": "$sSo6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvp",
|
|
850
|
+
"moduleName": "FireworkVideoUI",
|
|
851
|
+
"declAttributes": [
|
|
852
|
+
"Custom"
|
|
853
|
+
],
|
|
854
|
+
"isFromExtension": true,
|
|
855
|
+
"accessors": [
|
|
856
|
+
{
|
|
857
|
+
"kind": "Accessor",
|
|
858
|
+
"name": "Get",
|
|
859
|
+
"printedName": "Get()",
|
|
860
|
+
"children": [
|
|
861
|
+
{
|
|
862
|
+
"kind": "TypeNominal",
|
|
863
|
+
"name": "Optional",
|
|
864
|
+
"printedName": "UIKit.UIViewController?",
|
|
865
|
+
"children": [
|
|
866
|
+
{
|
|
867
|
+
"kind": "TypeNominal",
|
|
868
|
+
"name": "UIViewController",
|
|
869
|
+
"printedName": "UIKit.UIViewController",
|
|
870
|
+
"usr": "c:objc(cs)UIViewController"
|
|
871
|
+
}
|
|
872
|
+
],
|
|
873
|
+
"usr": "s:Sq"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"declKind": "Accessor",
|
|
877
|
+
"usr": "s:So6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvg",
|
|
878
|
+
"mangledName": "$sSo6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvg",
|
|
879
|
+
"moduleName": "FireworkVideoUI",
|
|
880
|
+
"isFromExtension": true,
|
|
881
|
+
"accessorKind": "get"
|
|
882
|
+
}
|
|
883
|
+
]
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"kind": "Var",
|
|
887
|
+
"name": "isIOSSDKView",
|
|
888
|
+
"printedName": "isIOSSDKView",
|
|
889
|
+
"children": [
|
|
890
|
+
{
|
|
891
|
+
"kind": "TypeNominal",
|
|
892
|
+
"name": "Bool",
|
|
893
|
+
"printedName": "Swift.Bool",
|
|
894
|
+
"usr": "s:Sb"
|
|
895
|
+
}
|
|
896
|
+
],
|
|
897
|
+
"declKind": "Var",
|
|
898
|
+
"usr": "s:So6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvp",
|
|
899
|
+
"mangledName": "$sSo6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvp",
|
|
900
|
+
"moduleName": "FireworkVideoUI",
|
|
901
|
+
"declAttributes": [
|
|
902
|
+
"Custom"
|
|
903
|
+
],
|
|
904
|
+
"isFromExtension": true,
|
|
905
|
+
"accessors": [
|
|
906
|
+
{
|
|
907
|
+
"kind": "Accessor",
|
|
908
|
+
"name": "Get",
|
|
909
|
+
"printedName": "Get()",
|
|
910
|
+
"children": [
|
|
911
|
+
{
|
|
912
|
+
"kind": "TypeNominal",
|
|
913
|
+
"name": "Bool",
|
|
914
|
+
"printedName": "Swift.Bool",
|
|
915
|
+
"usr": "s:Sb"
|
|
916
|
+
}
|
|
917
|
+
],
|
|
918
|
+
"declKind": "Accessor",
|
|
919
|
+
"usr": "s:So6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvg",
|
|
920
|
+
"mangledName": "$sSo6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvg",
|
|
921
|
+
"moduleName": "FireworkVideoUI",
|
|
922
|
+
"isFromExtension": true,
|
|
923
|
+
"accessorKind": "get"
|
|
924
|
+
}
|
|
925
|
+
]
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
"declKind": "Class",
|
|
929
|
+
"usr": "c:objc(cs)UIView",
|
|
930
|
+
"moduleName": "UIKit",
|
|
931
|
+
"isOpen": true,
|
|
932
|
+
"intro_iOS": "2.0",
|
|
933
|
+
"objc_name": "UIView",
|
|
934
|
+
"declAttributes": [
|
|
935
|
+
"Available",
|
|
936
|
+
"ObjC",
|
|
937
|
+
"NonSendable",
|
|
938
|
+
"Custom",
|
|
939
|
+
"Dynamic"
|
|
940
|
+
],
|
|
941
|
+
"superclassUsr": "c:objc(cs)UIResponder",
|
|
942
|
+
"isExternal": true,
|
|
943
|
+
"inheritsConvenienceInitializers": true,
|
|
944
|
+
"superclassNames": [
|
|
945
|
+
"UIKit.UIResponder",
|
|
946
|
+
"ObjectiveC.NSObject"
|
|
947
|
+
],
|
|
948
|
+
"conformances": [
|
|
949
|
+
{
|
|
950
|
+
"kind": "Conformance",
|
|
951
|
+
"name": "Equatable",
|
|
952
|
+
"printedName": "Equatable",
|
|
953
|
+
"usr": "s:SQ",
|
|
954
|
+
"mangledName": "$sSQ"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"kind": "Conformance",
|
|
958
|
+
"name": "Hashable",
|
|
959
|
+
"printedName": "Hashable",
|
|
960
|
+
"usr": "s:SH",
|
|
961
|
+
"mangledName": "$sSH"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"kind": "Conformance",
|
|
965
|
+
"name": "CVarArg",
|
|
966
|
+
"printedName": "CVarArg",
|
|
967
|
+
"usr": "s:s7CVarArgP",
|
|
968
|
+
"mangledName": "$ss7CVarArgP"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"kind": "Conformance",
|
|
972
|
+
"name": "_KeyValueCodingAndObservingPublishing",
|
|
973
|
+
"printedName": "_KeyValueCodingAndObservingPublishing",
|
|
974
|
+
"usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
|
|
975
|
+
"mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"kind": "Conformance",
|
|
979
|
+
"name": "_KeyValueCodingAndObserving",
|
|
980
|
+
"printedName": "_KeyValueCodingAndObserving",
|
|
981
|
+
"usr": "s:10Foundation27_KeyValueCodingAndObservingP",
|
|
982
|
+
"mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"kind": "Conformance",
|
|
986
|
+
"name": "CustomStringConvertible",
|
|
987
|
+
"printedName": "CustomStringConvertible",
|
|
988
|
+
"usr": "s:s23CustomStringConvertibleP",
|
|
989
|
+
"mangledName": "$ss23CustomStringConvertibleP"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"kind": "Conformance",
|
|
993
|
+
"name": "CustomDebugStringConvertible",
|
|
994
|
+
"printedName": "CustomDebugStringConvertible",
|
|
995
|
+
"usr": "s:s28CustomDebugStringConvertibleP",
|
|
996
|
+
"mangledName": "$ss28CustomDebugStringConvertibleP"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"kind": "Conformance",
|
|
1000
|
+
"name": "__DefaultCustomPlaygroundQuickLookable",
|
|
1001
|
+
"printedName": "__DefaultCustomPlaygroundQuickLookable",
|
|
1002
|
+
"usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
|
|
1003
|
+
"mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
|
|
1004
|
+
}
|
|
1005
|
+
]
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"json_format_version": 8
|
|
1009
|
+
},
|
|
1010
|
+
"ConstValues": [
|
|
1011
|
+
{
|
|
1012
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/Foundation\/URLSession+AppLanguage.swift",
|
|
1013
|
+
"kind": "Array",
|
|
1014
|
+
"offset": 141,
|
|
1015
|
+
"length": 47,
|
|
1016
|
+
"value": "[\"api.firework.tv\", \"p2.fwpixel.com\"]"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/LayoutFlipManager.swift",
|
|
1020
|
+
"kind": "BooleanLiteral",
|
|
1021
|
+
"offset": 945,
|
|
1022
|
+
"length": 4,
|
|
1023
|
+
"value": "true"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/LayoutFlipManager.swift",
|
|
1027
|
+
"kind": "BooleanLiteral",
|
|
1028
|
+
"offset": 389,
|
|
1029
|
+
"length": 5,
|
|
1030
|
+
"value": "false"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
|
|
1034
|
+
"kind": "BooleanLiteral",
|
|
1035
|
+
"offset": 133,
|
|
1036
|
+
"length": 5,
|
|
1037
|
+
"value": "false"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
|
|
1041
|
+
"kind": "StringLiteral",
|
|
1042
|
+
"offset": 232,
|
|
1043
|
+
"length": 16,
|
|
1044
|
+
"value": "\"basicTransform\""
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
|
|
1048
|
+
"kind": "StringLiteral",
|
|
1049
|
+
"offset": 289,
|
|
1050
|
+
"length": 20,
|
|
1051
|
+
"value": "\"isRenderStartLayer\""
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
|
|
1055
|
+
"kind": "StringLiteral",
|
|
1056
|
+
"offset": 347,
|
|
1057
|
+
"length": 17,
|
|
1058
|
+
"value": "\"affineTransform\""
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UILabel+LayoutFlip.swift",
|
|
1062
|
+
"kind": "StringLiteral",
|
|
1063
|
+
"offset": 137,
|
|
1064
|
+
"length": 26,
|
|
1065
|
+
"value": "\"VUlUZXh0RmllbGRMYWJlbA==\""
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UILabel+LayoutFlip.swift",
|
|
1069
|
+
"kind": "StringLiteral",
|
|
1070
|
+
"offset": 260,
|
|
1071
|
+
"length": 34,
|
|
1072
|
+
"value": "\"VUlEYXRlUGlja2VyQ29udGVudFZpZXc=\""
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UIImageView+AppLanguage.swift",
|
|
1076
|
+
"kind": "Array",
|
|
1077
|
+
"offset": 172,
|
|
1078
|
+
"length": 102,
|
|
1079
|
+
"value": "[\"shopping-cart\", \"left-arrow\", \"right-arrow\", \"speaker-unmute\", \"speaker-mute\"]"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UITextField+AppLanguage.swift",
|
|
1083
|
+
"kind": "StringLiteral",
|
|
1084
|
+
"offset": 208,
|
|
1085
|
+
"length": 31,
|
|
1086
|
+
"value": "\"hasCalculatedTextAlignmentKey\""
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UILabel+AppLanguage.swift",
|
|
1090
|
+
"kind": "StringLiteral",
|
|
1091
|
+
"offset": 200,
|
|
1092
|
+
"length": 31,
|
|
1093
|
+
"value": "\"hasCalculatedTextAlignmentKey\""
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/Foundation\/NSObject+LayoutFlip.swift",
|
|
1097
|
+
"kind": "StringLiteral",
|
|
1098
|
+
"offset": 230,
|
|
1099
|
+
"length": 14,
|
|
1100
|
+
"value": "\"reloadBlocks\""
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1104
|
+
"kind": "StringLiteral",
|
|
1105
|
+
"offset": 132,
|
|
1106
|
+
"length": 39,
|
|
1107
|
+
"value": "\"firework_sdk_app_language_storage_key\""
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1111
|
+
"kind": "IntegerLiteral",
|
|
1112
|
+
"offset": 226,
|
|
1113
|
+
"length": 3,
|
|
1114
|
+
"value": "1"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1118
|
+
"kind": "IntegerLiteral",
|
|
1119
|
+
"offset": 231,
|
|
1120
|
+
"length": 11,
|
|
1121
|
+
"value": "2"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1125
|
+
"kind": "IntegerLiteral",
|
|
1126
|
+
"offset": 226,
|
|
1127
|
+
"length": 3,
|
|
1128
|
+
"value": "1"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1132
|
+
"kind": "IntegerLiteral",
|
|
1133
|
+
"offset": 231,
|
|
1134
|
+
"length": 11,
|
|
1135
|
+
"value": "2"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1139
|
+
"kind": "IntegerLiteral",
|
|
1140
|
+
"offset": 226,
|
|
1141
|
+
"length": 3,
|
|
1142
|
+
"value": "1"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1146
|
+
"kind": "IntegerLiteral",
|
|
1147
|
+
"offset": 231,
|
|
1148
|
+
"length": 11,
|
|
1149
|
+
"value": "2"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
|
|
1153
|
+
"kind": "StringLiteral",
|
|
1154
|
+
"offset": 502,
|
|
1155
|
+
"length": 47,
|
|
1156
|
+
"value": "\"firework.notification.name.appLanguageChanged\""
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UITextView+AppLanguage.swift",
|
|
1160
|
+
"kind": "StringLiteral",
|
|
1161
|
+
"offset": 206,
|
|
1162
|
+
"length": 31,
|
|
1163
|
+
"value": "\"hasCalculatedTextAlignmentKey\""
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1167
|
+
"kind": "StringLiteral",
|
|
1168
|
+
"offset": 273,
|
|
1169
|
+
"length": 34,
|
|
1170
|
+
"value": "\"PUPhotosSectionHeaderContentView\""
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1174
|
+
"kind": "StringLiteral",
|
|
1175
|
+
"offset": 313,
|
|
1176
|
+
"length": 18,
|
|
1177
|
+
"value": "\"UITableViewIndex\""
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1181
|
+
"kind": "StringLiteral",
|
|
1182
|
+
"offset": 337,
|
|
1183
|
+
"length": 11,
|
|
1184
|
+
"value": "\"UIWebView\""
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1188
|
+
"kind": "StringLiteral",
|
|
1189
|
+
"offset": 354,
|
|
1190
|
+
"length": 22,
|
|
1191
|
+
"value": "\"X1VJUmVtb3RlVmlldw==\""
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1195
|
+
"kind": "StringLiteral",
|
|
1196
|
+
"offset": 420,
|
|
1197
|
+
"length": 30,
|
|
1198
|
+
"value": "\"VUlBdXRvY29ycmVjdFRleHRWaWV3\""
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1202
|
+
"kind": "IntegerLiteral",
|
|
1203
|
+
"offset": 554,
|
|
1204
|
+
"length": 7,
|
|
1205
|
+
"value": "1"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1209
|
+
"kind": "IntegerLiteral",
|
|
1210
|
+
"offset": 571,
|
|
1211
|
+
"length": 6,
|
|
1212
|
+
"value": "2"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1216
|
+
"kind": "IntegerLiteral",
|
|
1217
|
+
"offset": 587,
|
|
1218
|
+
"length": 4,
|
|
1219
|
+
"value": "3"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1223
|
+
"kind": "IntegerLiteral",
|
|
1224
|
+
"offset": 601,
|
|
1225
|
+
"length": 24,
|
|
1226
|
+
"value": "4"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1230
|
+
"kind": "IntegerLiteral",
|
|
1231
|
+
"offset": 635,
|
|
1232
|
+
"length": 22,
|
|
1233
|
+
"value": "5"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1237
|
+
"kind": "IntegerLiteral",
|
|
1238
|
+
"offset": 554,
|
|
1239
|
+
"length": 7,
|
|
1240
|
+
"value": "1"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1244
|
+
"kind": "IntegerLiteral",
|
|
1245
|
+
"offset": 571,
|
|
1246
|
+
"length": 6,
|
|
1247
|
+
"value": "2"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1251
|
+
"kind": "IntegerLiteral",
|
|
1252
|
+
"offset": 587,
|
|
1253
|
+
"length": 4,
|
|
1254
|
+
"value": "3"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1258
|
+
"kind": "IntegerLiteral",
|
|
1259
|
+
"offset": 601,
|
|
1260
|
+
"length": 24,
|
|
1261
|
+
"value": "4"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1265
|
+
"kind": "IntegerLiteral",
|
|
1266
|
+
"offset": 635,
|
|
1267
|
+
"length": 22,
|
|
1268
|
+
"value": "5"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1272
|
+
"kind": "IntegerLiteral",
|
|
1273
|
+
"offset": 554,
|
|
1274
|
+
"length": 7,
|
|
1275
|
+
"value": "1"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1279
|
+
"kind": "IntegerLiteral",
|
|
1280
|
+
"offset": 571,
|
|
1281
|
+
"length": 6,
|
|
1282
|
+
"value": "2"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1286
|
+
"kind": "IntegerLiteral",
|
|
1287
|
+
"offset": 587,
|
|
1288
|
+
"length": 4,
|
|
1289
|
+
"value": "3"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1293
|
+
"kind": "IntegerLiteral",
|
|
1294
|
+
"offset": 601,
|
|
1295
|
+
"length": 24,
|
|
1296
|
+
"value": "4"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1300
|
+
"kind": "IntegerLiteral",
|
|
1301
|
+
"offset": 635,
|
|
1302
|
+
"length": 22,
|
|
1303
|
+
"value": "5"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1307
|
+
"kind": "StringLiteral",
|
|
1308
|
+
"offset": 746,
|
|
1309
|
+
"length": 10,
|
|
1310
|
+
"value": "\"viewType\""
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1314
|
+
"kind": "StringLiteral",
|
|
1315
|
+
"offset": 797,
|
|
1316
|
+
"length": 20,
|
|
1317
|
+
"value": "\"calculatedViewType\""
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
|
|
1321
|
+
"kind": "StringLiteral",
|
|
1322
|
+
"offset": 848,
|
|
1323
|
+
"length": 10,
|
|
1324
|
+
"value": "\"lastType\""
|
|
1325
|
+
}
|
|
1326
|
+
]
|
|
1327
|
+
}
|