Exposure Playback
- Features
- License
- Requirements
- Installation
- Documentation
- Release Notes
- Upgrade Guides
- Known Limitations
Features
- Catchup as Live
- Playback through ExposureContext
- Program Based Stream Navigation
- Program Service
- Advanced Contract Restrictions
- Analytics Provider
Requirements
-
iOS
9.0+ -
tvOS
9.0+ -
Swift
4.0+ -
Xcode
9.0+ -
Framework dependencies
iOSClientPlayer
iOSClientExposure
- Exact versions described in Cartfile
Installation
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.
Once you have your Swift package set up, adding iOSClientExposurePlayback
as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.package(url: "https://github.com/EricssonBroadcastServices/iOSClientExposurePlayback", from: "3.5.0")
]
Carthage
Carthage is a decentralized dependency manager that builds your dependency graph without interfering with your Xcode
project setup. CI
integration through fastlane is also available.
Install Carthage through Homebrew by performing the following commands:
$ brew update
$ brew install carthage
Once Carthage has been installed, you need to create a Cartfile
which specifies your dependencies. Please consult the artifacts documentation for in-depth information about Cartfile
s and the other artifacts created by Carthage.
github "EricssonBroadcastServices/iOSClientExposurePlayback"
Running carthage update
will fetch your dependencies and place them in /Carthage/Checkouts
. You either build the .framework
s and drag them in your Xcode
or attach the fetched projects to your Xcode workspace
.
Finally, make sure you add the .framework
s to your targets General -> Embedded Binaries section.
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate iOSClientExposurePlayback
into your Xcode project using CocoaPods, specify it in your Podfile:
pod 'iOSClientExposurePlayback', '~> 3.5.0'
Release Notes
Release specific changes can be found in the CHANGELOG.
Upgrade Guides
The procedure to apply when upgrading from one version to another depends on what solution your client application has chosen to integrate ExposurePlayback
.
Major changes between releases will be documented with special Upgrade Guides.
Carthage
Updating your dependencies is done by running carthage update
with the relevant options, such as --use-submodules
, depending on your project setup. For more information regarding dependency management with Carthage
please consult their documentation or run carthage help
.