-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Updates * Add fields to `CustomerViewerData`allowing them to override detected device metadata values (#164) ## Breaking * Due to XCode 14, support for iOS and tvOS versions 9 and 10 have been removed. This may result in a warning for client applications with deployment versions below iOS/tvOS 11. For more information [see the last 'Deprecations' block in the release notes](https://developer.apple.com/documentation/Xcode-Release-Notes/xcode-14-release-notes). ## Improvements * Update to MuxCore 4.0.0, XCode 14 * Improve HLS/DASH segment request metrics (#165) ## MuxCore Updates * Add Request ID metadata property to BandwidthMetricData * Add Customer Overrides for Device Metadata
- Loading branch information
1 parent
39de1b2
commit 0a13634
Showing
43 changed files
with
286 additions
and
198 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// MUXSDKStats+PropertyGetters.h | ||
// MUXSDKStats | ||
// | ||
// Declares a project-level class extension that allows tests to get values under test out of the SDK | ||
// | ||
// Created by Emily Dixon on 10/17/22. | ||
// Copyright © 2022 Mux, Inc. All rights reserved. | ||
// | ||
|
||
#ifndef MUXSDKStats_PropertyGetters_h | ||
#define MUXSDKStats_PropertyGetters_h | ||
|
||
#import "MUXSDKStats.h" | ||
|
||
@interface MUXSDKStats() | ||
|
||
// Expose buildViewerData for tests | ||
+ (MUXSDKViewerData *)buildViewerData; | ||
|
||
@end | ||
|
||
#endif /* MUXSDKStats_PropertyGetters_h */ |
Oops, something went wrong.