The THEOplayer iOS/tvOS SDK 5.0 is more performant than the legacy iOS and tvOS SDK (4.12.x), as it removes the dependency on the WebView to handle video-playback and supported features.
Removing the WebView dependency will also allow us to move many of the APIs from being asynchronous to being synchronous, such as querying the current time.
The THEOplayer iOS/tvOS SDK 5.0 moves towards more modularized features, which means there is a base SDK that can handle basic playback and additional feature integrations are provided as separate modules that can be added as desired. This approach gives more flexibility and results in a reduced application size, since non-required parts are not included in the build of the application. You can read more about this here.
Lastly, the THEOplayer iOS/tvOS SDK 5.0 is released only on package managers (Cocoapods, and Swift packages later) which allow developers to easily fetch and implement the latest player into their app.
THEOplayer iOS/tvOS SDK 5.0 is a more performant version of our SDK, so we advise you to migrate as soon as possible.
However, the 5.0 SDK is built from the ground up so from day 1 it will be not in feature parity with the legacy SDKs.
What features are covered already in THEOplayer iOS/tvOS SDK 5.0?
If the implemented features are covering your use-cases, feel free to upgrade. The changes due to deprecations in your code will be minimal, THEOplayer iOS/tvOS SDK 5.0 tries to be backward compatible with the legacy 4.x APIs as much as possible.
If your use-cases rely on missing features and you can not implement them on top of the player.
Some features, like:
Or features which brought to life via the WebView's middle layer:
Or you rely on the default THEOplayer UI.
The current THEOplayer iOS/tvOS SDK 5.0 is chromeless, it means you need to implement your own native UI on top of the player.
Soon we will also release a fully native, customizable UI module (connector). Stay tuned!
There are 2 main things you need to consider during migration:
For these ones please consult with our changelog
You can read more about the new architecture here
Use the latest THEOplayer iOS/tvOS SDK 5.0 Cocoapod in your Podfile.
pod 'THEOplayerSDK-core', '~> 5.0'
If you rely on Google IMA advertisement or Google Cast (Chromecast) features, you need to intialized the relevant integrations accordingly before you try to use them.
For Google IMA:
Pull the integration from Cocoapods:
pod 'THEOplayerSDK-Integration-GoogleIMA', '~> 5.0'
Initialize the integration:
import THEOplayerGoogleIMAIntegration
...
let imaIntegration = GoogleIMAIntegrationFactory.createIntegration(on: self.theoplayer)
self.theoplayer.addIntegration(imaIntegration)
For Google Cast:
Pull the integration from Cocoapods:
pod 'THEOplayerSDK-Integration-GoogleIMA', '~> 5.0'
Initialize the integration:
import THEOplayerGoogleCastIntegration
...
let castConfig = CastConfiguration(strategy: .manual)
let castIntegration = GoogleCastIntegrationFactory.createIntegration(on: self.theoplayer, with: castConfig)
self.theoplayer.addIntegration(castIntegration)
After these steps you should be able to compile your project and benefit from THEOplayer iOS/tvOS SDK 5.0.
The Google Cast and Google IMA integration APIs are mapped to theoplayer.ads
and theoplayer.cast.chromecast
APIs, but you can also access the same APIs (and new ones) on the integrations itself.