-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: AVPlayerViewController signed playback URL convenience APIs (#8)
* Add identifying information and year to LICENSE * refactor: API revisions * chore: Add 5.8 Package.swift * chore: convert AVPlayerItem constructors to internal * fix: accept custom domain as a String and prepend with stream
- Loading branch information
1 parent
8c8e083
commit 87865e6
Showing
8 changed files
with
335 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// swift-tools-version: 5.8 | ||
// swift-tools-version: 5.9 | ||
|
||
import PackageDescription | ||
|
||
|
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,44 @@ | ||
// swift-tools-version: 5.8 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "MuxAVPlayerSDK", | ||
platforms: [ | ||
.iOS(.v15) | ||
], | ||
products: [ | ||
.library( | ||
name: "MuxAVPlayerSDK", | ||
targets: ["MuxAVPlayerSDK"] | ||
), | ||
], | ||
dependencies: [ | ||
.package( | ||
url: "https://github.com/muxinc/mux-stats-sdk-avplayer", | ||
exact: "3.3.1" | ||
), | ||
.package( | ||
url: "https://github.com/apple/swift-docc-plugin", | ||
from: "1.2.0" | ||
), | ||
], | ||
targets: [ | ||
.target( | ||
name: "MuxAVPlayerSDK", | ||
dependencies: [ | ||
.product( | ||
name: "MUXSDKStats", | ||
package: "mux-stats-sdk-avplayer" | ||
) | ||
] | ||
), | ||
.testTarget( | ||
name: "MuxAVPlayerSDKTests", | ||
dependencies: [ | ||
"MuxAVPlayerSDK" | ||
] | ||
), | ||
] | ||
) | ||
|
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
Oops, something went wrong.