The Maestro SDK for Paramount, delivered as a Swift Package. Supports iOS 18+ and tvOS 18+.
In Xcode: File → Add Package Dependencies…, enter the repository URL, and choose Up to Next Major from the latest version.
https://github.com/lessthan3/MaestroKit-Paramount.swift
Or add it to your own Package.swift:
dependencies: [
.package(url: "https://github.com/lessthan3/MaestroKit-Paramount.swift", from: "1.0.0"),
],
targets: [
.target(
name: "YourApp",
dependencies: [
.product(name: "MaestroKit", package: "MaestroKit-Paramount.swift"),
]
),
]Xcode resolves the package and downloads the prebuilt frameworks automatically — there's nothing else to link or embed.
import MaestroKitParamount
// Once, early in your app's lifecycle:
await MaestroManager.shared.configure(siteID: "YOUR_SITE_ID")Replace YOUR_SITE_ID with the site ID your Maestro contact provides.
Integration guides are provided in the Docs/ folder of this repo.
Each version's changes are on the repo's Releases page.