-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements: * Add support for monitoring media on `visionOS`. We recommend testing your `visionOS` SDK integration on both the simulator and a physical device prior to deploying to the App Store. Fixes: * Compute correct Video Startup Time if `AdPlayingEvent` occurs a significant time after the view has started * Ensure seeks are excluded from Video Startup Time in all cases Known Issues: * Installation using Cocoapods on `visionOS` is not currently supported. Installation on `iOS` and `tvOS` using Cocoapods is not affected.
- Loading branch information
1 parent
982feb9
commit 50d131b
Showing
133 changed files
with
3,724 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-2 Bytes
(100%)
XCFramework/MuxCore.xcframework/ios-arm64/MuxCore.framework/Info.plist
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
XCFramework/MuxCore.xcframework/ios-arm64/MuxCore.framework/Modules/module.modulemap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
framework module MuxCore { | ||
umbrella header "MuxCore.h" | ||
|
||
export * | ||
|
||
module * { export * } | ||
} |
Binary file modified
BIN
+32 Bytes
(100%)
XCFramework/MuxCore.xcframework/ios-arm64/MuxCore.framework/MuxCore
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
...mework/ios-arm64_x86_64-maccatalyst/MuxCore.framework/Versions/A/Modules/module.modulemap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
framework module MuxCore { | ||
umbrella header "MuxCore.h" | ||
|
||
export * | ||
|
||
module * { export * } | ||
} |
Binary file modified
BIN
+33.7 KB
(100%)
...ork/MuxCore.xcframework/ios-arm64_x86_64-maccatalyst/MuxCore.framework/Versions/A/MuxCore
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-2 Bytes
(100%)
XCFramework/MuxCore.xcframework/ios-arm64_x86_64-simulator/MuxCore.framework/Info.plist
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
...MuxCore.xcframework/ios-arm64_x86_64-simulator/MuxCore.framework/Modules/module.modulemap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
framework module MuxCore { | ||
umbrella header "MuxCore.h" | ||
|
||
export * | ||
|
||
module * { export * } | ||
} |
Binary file modified
BIN
+16 Bytes
(100%)
XCFramework/MuxCore.xcframework/ios-arm64_x86_64-simulator/MuxCore.framework/MuxCore
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-1 Byte
(100%)
XCFramework/MuxCore.xcframework/tvos-arm64/MuxCore.framework/Info.plist
Binary file not shown.
Binary file modified
BIN
+8 Bytes
(100%)
XCFramework/MuxCore.xcframework/tvos-arm64/MuxCore.framework/MuxCore
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
XCFramework/MuxCore.xcframework/tvos-arm64_x86_64-simulator/MuxCore.framework/Info.plist
Binary file not shown.
Binary file modified
BIN
+30.3 KB
(100%)
XCFramework/MuxCore.xcframework/tvos-arm64_x86_64-simulator/MuxCore.framework/MuxCore
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdBreakEndEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdBreakEndEvent_h | ||
#define MUXSDKAdBreakEndEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdBreakEndEventType; | ||
|
||
@interface MUXSDKAdBreakEndEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
12 changes: 12 additions & 0 deletions
12
...mework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdBreakStartEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdBreakStartEvent_h | ||
#define MUXSDKAdBreakStartEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdBreakStartEventType; | ||
|
||
@interface MUXSDKAdBreakStartEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
30 changes: 30 additions & 0 deletions
30
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdData.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// | ||
// MUXSDKAdData.h | ||
// MuxCore | ||
// | ||
// Created by Emily Dixon on 1/30/23. | ||
// Copyright © 2023 Mux. All rights reserved. | ||
// | ||
|
||
#ifndef MUXSDKAdData_h | ||
#define MUXSDKAdData_h | ||
|
||
#import "MUXSDKQueryData.h" | ||
#import "MUXSDKViewDeviceOrientationData.h" | ||
#import <Foundation/Foundation.h> | ||
#import "MUXSDKViewDeviceOrientationData.h" | ||
#import "MUXSDKUpsertable.h" | ||
|
||
@interface MUXSDKAdData : MUXSDKQueryData<MUXSDKUpsertable> | ||
|
||
@property (nullable) NSString *adAssetUrl; | ||
@property (nullable) NSString *adCreativeId; | ||
@property (nullable) NSString *adId; | ||
@property (nullable) NSString *adTagUrl; | ||
@property (nullable) NSString *adUniversalId; | ||
|
||
+ (NSSet *_Nonnull)requiredKeys; | ||
|
||
@end | ||
|
||
#endif /* MUXSDKAdData_h */ |
12 changes: 12 additions & 0 deletions
12
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdEndedEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdEndedEvent_h | ||
#define MUXSDKAdEndedEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdEndedEventType; | ||
|
||
@interface MUXSDKAdEndedEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
12 changes: 12 additions & 0 deletions
12
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdErrorEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdErrorEvent_h | ||
#define MUXSDKAdErrorEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdErrorEventType; | ||
|
||
@interface MUXSDKAdErrorEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
20 changes: 20 additions & 0 deletions
20
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// MUXSDKAdEvent.h | ||
// MuxCore | ||
// | ||
// Created by Emily Dixon on 1/30/23. | ||
// Copyright © 2023 Mux. All rights reserved. | ||
// | ||
|
||
#ifndef MUXSDKAdEvent_h | ||
#define MUXSDKAdEvent_h | ||
|
||
#import "MUXSDKAdData.h" | ||
#import "MUXSDKEventTyping.h" | ||
#import "MUXSDKPlaybackEvent.h" | ||
|
||
@interface MUXSDKAdEvent : MUXSDKPlaybackEvent<MUXSDKEventTyping> | ||
@property (nonatomic, retain, nullable) MUXSDKAdData *adData; | ||
@end | ||
|
||
#endif /* MUXSDKAdEvent_h */ |
12 changes: 12 additions & 0 deletions
12
...ork/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdFirstQuartileEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdFirstQuartileEvent_h | ||
#define MUXSDKAdFirstQuartileEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdFirstQuartileEventType; | ||
|
||
@interface MUXSDKAdFirstQuartileEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
12 changes: 12 additions & 0 deletions
12
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdMidpointEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdMidpointEvent_h | ||
#define MUXSDKAdMidpointEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdMidpointEventType; | ||
|
||
@interface MUXSDKAdMidpointEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
12 changes: 12 additions & 0 deletions
12
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdPauseEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdPauseEvent_h | ||
#define MUXSDKAdPauseEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdPauseEventType; | ||
|
||
@interface MUXSDKAdPauseEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
12 changes: 12 additions & 0 deletions
12
XCFramework/MuxCore.xcframework/xros-arm64/MuxCore.framework/Headers/MUXSDKAdPlayEvent.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef MUXSDKAdPlayEvent_h | ||
#define MUXSDKAdPlayEvent_h | ||
|
||
#import "MUXSDKAdEvent.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * _Nonnull const MUXSDKPlaybackEventAdPlayEventType; | ||
|
||
@interface MUXSDKAdPlayEvent : MUXSDKAdEvent | ||
@end | ||
|
||
#endif |
Oops, something went wrong.