iOS CocoaPods publishing moves to Trunk

The Bitmovin Player and Analytics iOS SDKs are now published on the official CocoaPods Trunk repository. Moving forward, no further releases will be published on our custom spec repository.

Affected versions

These are the latest versions published on our custom repository. All upcoming releases will be available on Trunk instead:

What Changes for Users

You no longer need to add our custom repository as a source, which simplifies the integration process. Now, adding our packages is as simple as including a single line in your Podfile:

pod 'BitmovinPlayer', 'Version Number'

How to Update your App

If you’re updating to a newer version that is no longer hosted on our custom repository (see the Affected Versions section above), you can remove the following line from your Podfile:

- source 'https://github.com/bitmovin/cocoapod-specs.git'

pod 'BitmovinPlayer', 'Version Number'

:warning: Troubleshooting

If you encounter issues with the specifications not being found, explicitly add the CocoaPods CDN source in your Podfile:

source 'https://cdn.cocoapods.org'
2 Likes