Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theoplayer/theolive-sdk-ios
https://github.com/theoplayer/theolive-sdk-ios
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/theoplayer/theolive-sdk-ios
- Owner: THEOplayer
- Created: 2022-09-21T15:00:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-12T14:10:47.000Z (29 days ago)
- Last Synced: 2024-12-12T15:24:00.592Z (29 days ago)
- Language: Ruby
- Size: 14.6 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# THEOliveSDK
## Add dependency using SPM
Add a `dependencies` clause to your `Package` and `targets` in the `Package.swift` manifest
```swift
// swift-tools-version:5.9
import PackageDescriptionlet package = Package(
name: "MyPackage",
dependencies: [
.package(
url: "https://github.com/THEOplayer/theolive-sdk-ios",
.upToNextMinor(from: "3.18.6") // or `.upToNextMajor
)
],
targets: [
.target(
name: "MyTarget",
dependencies: [
.product(name: "THEOliveSDK", package: "theolive-sdk-ios")
]
)
]
)
```## Add dependency using CocoaPods
- Create a Podfile if you don't already have one. From the root of your project directory, run the following command: `pod init`
- Add `THEOliveSDK` as a dependency in your Podfile: `pod 'THEOliveSDK'`
- Install the pods using `pod install` , then open your `.xcworkspace` file to see the project in Xcode.