Install Cog for Swift
Cog requires iOS 17 or macOS 14, Swift tools 6.2, and a full Xcode. Releases are tested with Xcode 26.6 and Swift 6.3.3.
Add Cog in Xcode
- Choose File ▸ Add Package Dependencies.
- Enter
https://github.com/skeswa/cog.git. - Choose Up to Next Minor Version. Before 1.0, a minor release may include listed breaking changes; patch releases do not.
- Add the
Cogproduct to the app target. - Add
CogTestingto each test or preview-support target that creates an isolated runtime.
Cog resolves with no dependencies of its own. Once Xcode finishes resolving the package, import Cog should build in the app target.
Add Cog to a Swift package
The complete manifest below creates one package target and one test target. Rename Forecast to match your module.
swift
// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "Forecast",
platforms: [
.iOS(.v17),
.macOS(.v14),
],
dependencies: [
.package(
url: "https://github.com/skeswa/cog.git",
.upToNextMinor(from: "0.8.1")
)
],
targets: [
.target(
name: "Forecast",
dependencies: [
.product(name: "Cog", package: "cog")
]
),
.testTarget(
name: "ForecastTests",
dependencies: [
"Forecast",
.product(name: "CogTesting", package: "cog"),
]
),
]
)Use Cog in production targets. CogTesting depends on and re-exports Cog, but belongs only in tests and preview support.
Continue
Build the quick-start app to declare a value, put it on screen, change it from a button, and test it with an isolated runtime.
For the optional CompactArena binary-size trade-off, see Add Cog to a Swift app.