<img src="https://img.shields.io/badge/%20-ENTERPRISE-B10031" style="float:left"/><br /> <img src="https://img.shields.io/badge/iOS-V4-009727?logo=apple" style="float:left"/><br />
To add JWP's video experience to your app, you must import the JWP iOS SDK (app) and then configure your project.
<br />
You can download the SDK using the CocoaPods or Local approaches listed below.
Approach | Notes |
[**CocoaPods**](🔗) | • No manual SDK download is required.<br />• Core and optional modules will be added to your app. <br />• Your main project will be modified. |
[**Local**](🔗) | • SDK must be downloaded and unzipped.<br />• Core and optional modules must be manually added to your app. |
<br />

If you have any problems completing any of these tasks and have a valid JWP license, please [log a support ticket](🔗) for assistance.
<br /> <hr />
## CocoaPods
### Install CocoaPods and create a Podfile
At the Terminal prompt, enter `
gem install cocoapods
` to install CocoaPods.Enter `
cd <path-to-your-project>/<your-project>/
` to navigate to your project directory.Enter `
pod init
` to create a file named **Podfile**. **Podfile** defines the dependencies for your project.
<br />
### Edit the Podfile
In a text editor, open **Podfile**.
Set the iOS version to `
12.0
` or greater.If you are using Objective-C, you can comment out `
use_frameworks!
`.Add `
JWPlayerKit
` as a dependency. To add a specific version of the SDK, be sure to use the proper <a href="https://guides.cocoapods.org/using/the-podfile.html" target="_blank">Podfile syntax</a>.Save **Podfile** and close the text editor.
<br />
### Install the SDK
At the Terminal prompt of your project directory, enter `
pod install
` to install the SDK.Open the **.xcworkspace** file for your project to launch Xcode.
You can now [configure your project](🔗).
<br /> <hr />
## Local
### Download the SDK
On the <a href="" target="_blank"><strong>Players</strong></a> page under **iOS SDK**, click **Downloads**. The **iOS Downloads** screen displays.
In the row of the SDK version to download, click <img src="https://files.readme.io/26aee42-Screen_Shot_2022-07-12_at_10.25.01_PM.png" width="15" height="15" target="_blank"> to download the .zip version to your computer.
On your computer, unzip the SDK .zip file.
<br />
### Import the SDK into your project
From within Xcode, select your project from the project navigator.
Select the target in the left column of the project editor.
Click **General**.
In the **Linked Frameworks and Libraries**, click **+**.
Click **Add Other**.
Select **JWPlayerKit.xcframework** (iOS) from your computer.
Click **Open**.
You can now [configure your project](🔗).
<br />