@bluebillywig/react-native-bb-player 8.45.22 → 8.45.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/bluebillywig/bbplayer/BBPlayerView.kt +3 -2
- package/ios/BBPlayerView.swift +1 -2
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Assets.car +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/BBNativePlayerKit +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Headers/BBNativePlayerKit-Swift.h +9 -9
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Info.plist +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios.abi.json +1002 -953
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios.private.swiftinterface +136 -2
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios.swiftinterface +136 -2
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Assets.car +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/BBNativePlayerKit +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Headers/BBNativePlayerKit-Swift.h +18 -18
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Info.plist +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios-simulator.abi.json +1002 -953
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +136 -2
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +136 -2
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/x86_64-apple-ios-simulator.abi.json +1002 -953
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +136 -2
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/BBNativePlayerKit.xcframework/ios-arm64_x86_64-simulator/BBNativePlayerKit.framework/Modules/BBNativePlayerKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +136 -2
- package/ios/Frameworks/bbnativeshared.xcframework/Info.plist +5 -5
- package/ios/Frameworks/bbnativeshared.xcframework/ios-arm64/bbnativeshared.framework/bbnativeshared +0 -0
- package/ios/Frameworks/bbnativeshared.xcframework/ios-arm64/dSYMs/bbnativeshared.framework.dSYM/Contents/Resources/DWARF/bbnativeshared +0 -0
- package/ios/Frameworks/bbnativeshared.xcframework/ios-arm64/dSYMs/bbnativeshared.framework.dSYM/Contents/Resources/Relocations/aarch64/bbnativeshared.yml +1 -1
- package/ios/Frameworks/bbnativeshared.xcframework/ios-arm64_x86_64-simulator/bbnativeshared.framework/bbnativeshared +0 -0
- package/ios/Frameworks/bbnativeshared.xcframework/ios-arm64_x86_64-simulator/dSYMs/bbnativeshared.framework.dSYM/Contents/Resources/DWARF/bbnativeshared +0 -0
- package/package.json +1 -1
- package/react-native-bb-player.podspec +2 -2
package/android/build.gradle
CHANGED
|
@@ -83,7 +83,7 @@ dependencies {
|
|
|
83
83
|
// Blue Billywig Native Player SDK
|
|
84
84
|
// Uses latest available version by default
|
|
85
85
|
// Customers can pin a specific version using resolutionStrategy in their app's build.gradle
|
|
86
|
-
implementation 'com.bluebillywig.bbnativeplayersdk:
|
|
86
|
+
implementation 'com.bluebillywig.bbnativeplayersdk:8.45.+'
|
|
87
87
|
|
|
88
88
|
// AndroidX MediaRouter for Chromecast support
|
|
89
89
|
implementation 'androidx.mediarouter:mediarouter:1.7.0'
|
|
@@ -398,8 +398,9 @@ class BBPlayerView(private val reactContext: ThemedReactContext) : FrameLayout(r
|
|
|
398
398
|
}
|
|
399
399
|
|
|
400
400
|
fun seekRelative(offsetInSeconds: Double) {
|
|
401
|
-
|
|
402
|
-
|
|
401
|
+
if (::playerView.isInitialized) {
|
|
402
|
+
playerView.player?.seek(offsetInSeconds, true)
|
|
403
|
+
}
|
|
403
404
|
}
|
|
404
405
|
|
|
405
406
|
fun setVolume(volume: Double) {
|
package/ios/BBPlayerView.swift
CHANGED
|
@@ -586,8 +586,7 @@ class BBPlayerView: UIView, BBNativePlayerViewDelegate {
|
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
func seekRelative(_ offsetInSeconds: Double) {
|
|
589
|
-
|
|
590
|
-
log("seekRelative not available in this SDK version", level: .warning)
|
|
589
|
+
playerView?.player.seekRelative(offsetInSeconds: offsetInSeconds as NSNumber)
|
|
591
590
|
}
|
|
592
591
|
|
|
593
592
|
func setMuted(_ muted: Bool) {
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#if 0
|
|
2
2
|
#elif defined(__arm64__) && __arm64__
|
|
3
|
-
// Generated by Apple Swift version 6.
|
|
3
|
+
// Generated by Apple Swift version 6.2.4 effective-5.10 (swiftlang-6.2.4.1.4 clang-1700.6.4.2)
|
|
4
4
|
#ifndef BBNATIVEPLAYERKIT_SWIFT_H
|
|
5
5
|
#define BBNATIVEPLAYERKIT_SWIFT_H
|
|
6
6
|
#pragma clang diagnostic push
|
|
@@ -355,14 +355,14 @@ SWIFT_CLASS("_TtC17BBNativePlayerKit28BBNativePlayerViewController")
|
|
|
355
355
|
@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations;
|
|
356
356
|
@end
|
|
357
357
|
|
|
358
|
-
@interface BBNativePlayerViewController (SWIFT_EXTENSION(BBNativePlayerKit)) <GCKDiscoveryManagerListener>
|
|
359
|
-
- (void)didUpdateDeviceList;
|
|
360
|
-
@end
|
|
361
|
-
|
|
362
358
|
@interface BBNativePlayerViewController (SWIFT_EXTENSION(BBNativePlayerKit)) <BbnativesharedEventListenerInterface>
|
|
363
359
|
- (void)onEventEventType:(BbnativesharedEventName * _Nonnull)eventType data:(NSDictionary<NSString *, id> * _Nullable)data;
|
|
364
360
|
@end
|
|
365
361
|
|
|
362
|
+
@interface BBNativePlayerViewController (SWIFT_EXTENSION(BBNativePlayerKit)) <GCKDiscoveryManagerListener>
|
|
363
|
+
- (void)didUpdateDeviceList;
|
|
364
|
+
@end
|
|
365
|
+
|
|
366
366
|
@class UIGestureRecognizer;
|
|
367
367
|
@class UITouch;
|
|
368
368
|
@interface BBNativePlayerViewController (SWIFT_EXTENSION(BBNativePlayerKit)) <UIGestureRecognizerDelegate>
|
|
@@ -649,14 +649,14 @@ SWIFT_CLASS("_TtC17BBNativePlayerKit18BBNativeShortsView")
|
|
|
649
649
|
- (void)removeFromSuperview;
|
|
650
650
|
@end
|
|
651
651
|
|
|
652
|
-
@interface BBNativeShortsView (SWIFT_EXTENSION(BBNativePlayerKit)) <BbnativesharedEventListenerInterface>
|
|
653
|
-
- (void)onEventEventType:(BbnativesharedEventName * _Nonnull)eventType data:(NSDictionary<NSString *, id> * _Nullable)data;
|
|
654
|
-
@end
|
|
655
|
-
|
|
656
652
|
@interface BBNativeShortsView (SWIFT_EXTENSION(BBNativePlayerKit)) <BBNativePlayerViewDelegate>
|
|
657
653
|
- (void)bbNativePlayerViewWithPlayerView:(BBNativePlayerView * _Nonnull)playerView didSetupWithJsonUrl:(NSString * _Nullable)url;
|
|
658
654
|
@end
|
|
659
655
|
|
|
656
|
+
@interface BBNativeShortsView (SWIFT_EXTENSION(BBNativePlayerKit)) <BbnativesharedEventListenerInterface>
|
|
657
|
+
- (void)onEventEventType:(BbnativesharedEventName * _Nonnull)eventType data:(NSDictionary<NSString *, id> * _Nullable)data;
|
|
658
|
+
@end
|
|
659
|
+
|
|
660
660
|
/// :nodoc:
|
|
661
661
|
SWIFT_CLASS("_TtC17BBNativePlayerKit28BBNativeShortsViewController")
|
|
662
662
|
@interface BBNativeShortsViewController : UIViewController
|