Files
rive-ios/.github/workflows/Package.swift.template
2025-09-15 19:06:22 +00:00

18 lines
554 B
Plaintext

// swift-tools-version:5.10
import PackageDescription
let package = Package(
name: "RiveRuntime",
platforms: [.iOS("14.0"), .visionOS("1.0"), .tvOS("16.0"), .macOS("13.1"), .macCatalyst("14.0")],
products: [
.library(
name: "RiveRuntime",
targets: ["RiveRuntime"])],
targets: [
.binaryTarget(
name: "RiveRuntime",
url: "https://github.com/rive-app/rive-ios/releases/download/$RELEASE_VERSION/RiveRuntime.xcframework.zip",
checksum: "$CHECKSUM"
)
]
)