react-native-firework-sdk 2.6.0-beta.1 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/FireworkVideoUI.xcframework/Info.plist +5 -5
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/FireworkVideoUI +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Info.plist +0 -0
- package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/FireworkVideoUI +0 -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/_CodeSignature/CodeResources +1 -1
- package/android/gradle.properties +1 -1
- package/android/proguard-rules.pro +4 -0
- package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +3 -3
- package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/AppLanguageManager.swift +2 -2
- package/ios/FireworkVideoUI/Podfile +2 -2
- package/ios/FireworkVideoUI/Podfile.lock +4 -4
- package/ios/Support/MultiHostStreaming/FWMultiHostStreaming.podspec +1 -1
- package/package.json +1 -1
- package/react-native-firework-sdk.podspec +2 -2
|
@@ -6,30 +6,30 @@
|
|
|
6
6
|
<array>
|
|
7
7
|
<dict>
|
|
8
8
|
<key>LibraryIdentifier</key>
|
|
9
|
-
<string>ios-
|
|
9
|
+
<string>ios-arm64</string>
|
|
10
10
|
<key>LibraryPath</key>
|
|
11
11
|
<string>FireworkVideoUI.framework</string>
|
|
12
12
|
<key>SupportedArchitectures</key>
|
|
13
13
|
<array>
|
|
14
14
|
<string>arm64</string>
|
|
15
|
-
<string>x86_64</string>
|
|
16
15
|
</array>
|
|
17
16
|
<key>SupportedPlatform</key>
|
|
18
17
|
<string>ios</string>
|
|
19
|
-
<key>SupportedPlatformVariant</key>
|
|
20
|
-
<string>simulator</string>
|
|
21
18
|
</dict>
|
|
22
19
|
<dict>
|
|
23
20
|
<key>LibraryIdentifier</key>
|
|
24
|
-
<string>ios-
|
|
21
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
25
22
|
<key>LibraryPath</key>
|
|
26
23
|
<string>FireworkVideoUI.framework</string>
|
|
27
24
|
<key>SupportedArchitectures</key>
|
|
28
25
|
<array>
|
|
29
26
|
<string>arm64</string>
|
|
27
|
+
<string>x86_64</string>
|
|
30
28
|
</array>
|
|
31
29
|
<key>SupportedPlatform</key>
|
|
32
30
|
<string>ios</string>
|
|
31
|
+
<key>SupportedPlatformVariant</key>
|
|
32
|
+
<string>simulator</string>
|
|
33
33
|
</dict>
|
|
34
34
|
</array>
|
|
35
35
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Info.plist
CHANGED
|
Binary file
|
|
@@ -19,7 +19,7 @@ class FWVideoFeed(
|
|
|
19
19
|
|
|
20
20
|
val videoFeedView = FwVideoFeedView(context)
|
|
21
21
|
var videoFeedPropsModel: FWVideoFeedPropsModel = FWVideoFeedPropsModel()
|
|
22
|
-
private var
|
|
22
|
+
private var isInit = false
|
|
23
23
|
|
|
24
24
|
init {
|
|
25
25
|
FWLanguageUtil.getInstance(context).updateBaseContextLocale(context)
|
|
@@ -34,12 +34,12 @@ class FWVideoFeed(
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
fun initVideoFeedView() {
|
|
37
|
-
if (
|
|
37
|
+
if (isInit) {
|
|
38
38
|
return
|
|
39
39
|
}
|
|
40
40
|
val viewOptionsBuilder = FWConfigUtil.generateViewOptionsBuilder(context, videoFeedPropsModel)
|
|
41
41
|
videoFeedView.init(viewOptionsBuilder.build())
|
|
42
|
-
|
|
42
|
+
isInit = true
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
fun refresh() {
|
|
@@ -69,7 +69,7 @@ public class AppLanguageManager {
|
|
|
69
69
|
return .unsupported
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
|
-
|
|
72
|
+
|
|
73
73
|
var systemLanguageLayoutDirection: LanguageLayoutDirection? {
|
|
74
74
|
guard let languageCode = systemLanguageCode else {
|
|
75
75
|
return nil
|
|
@@ -90,7 +90,7 @@ public class AppLanguageManager {
|
|
|
90
90
|
systemLanguageLayoutDirection == .ltr {
|
|
91
91
|
return true
|
|
92
92
|
}
|
|
93
|
-
|
|
93
|
+
|
|
94
94
|
if appLanguageLayoutDirection == .ltr,
|
|
95
95
|
systemLanguageLayoutDirection == .rtl {
|
|
96
96
|
return true
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Uncomment the next line to define a global platform for your project
|
|
2
|
-
platform :ios, '
|
|
2
|
+
platform :ios, '13.0'
|
|
3
3
|
|
|
4
4
|
target 'FireworkVideoUI' do
|
|
5
5
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
6
6
|
use_frameworks!
|
|
7
7
|
|
|
8
8
|
# Pods for FireworkVideoUI
|
|
9
|
-
pod 'FireworkVideo', '1.
|
|
9
|
+
pod 'FireworkVideo', '1.13.0'
|
|
10
10
|
|
|
11
11
|
target 'FireworkVideoUITests' do
|
|
12
12
|
# Pods for testing
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
PODS:
|
|
2
|
-
- FireworkVideo (1.
|
|
2
|
+
- FireworkVideo (1.13.0)
|
|
3
3
|
|
|
4
4
|
DEPENDENCIES:
|
|
5
|
-
- FireworkVideo (= 1.
|
|
5
|
+
- FireworkVideo (= 1.13.0)
|
|
6
6
|
|
|
7
7
|
SPEC REPOS:
|
|
8
8
|
trunk:
|
|
9
9
|
- FireworkVideo
|
|
10
10
|
|
|
11
11
|
SPEC CHECKSUMS:
|
|
12
|
-
FireworkVideo:
|
|
12
|
+
FireworkVideo: 97ef1b615991fe967bd3ed6a7380a250fb02f403
|
|
13
13
|
|
|
14
|
-
PODFILE CHECKSUM:
|
|
14
|
+
PODFILE CHECKSUM: c22dec34b8972d810f5d4e1c0347d4da880ffd0f
|
|
15
15
|
|
|
16
16
|
COCOAPODS: 1.12.1
|
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.license = 'Apache License, Version 2.0'
|
|
12
12
|
s.authors = package['author']
|
|
13
13
|
|
|
14
|
-
s.platforms = { ios: '
|
|
14
|
+
s.platforms = { ios: '13.0' }
|
|
15
15
|
s.source = { git: 'https://github.com/loopsocial/bogano.git', tag: "#{s.version}" }
|
|
16
16
|
|
|
17
17
|
s.swift_version = '5.0'
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = 'Apache License, Version 2.0'
|
|
11
11
|
s.authors = package['author']
|
|
12
12
|
|
|
13
|
-
s.platforms = { ios: '
|
|
13
|
+
s.platforms = { ios: '13.0' }
|
|
14
14
|
s.source = { git: 'https://github.com/loopsocial/bogano.git', tag: "#{s.version}" }
|
|
15
15
|
|
|
16
16
|
s.swift_version = '5.0'
|
|
@@ -35,5 +35,5 @@ fi
|
|
|
35
35
|
|
|
36
36
|
s.static_framework = true
|
|
37
37
|
s.dependency 'React-Core'
|
|
38
|
-
s.dependency 'FireworkVideo', '1.
|
|
38
|
+
s.dependency 'FireworkVideo', '1.13.0'
|
|
39
39
|
end
|