Files
rive-ios/Package.swift
2025-09-12 03:26:08 +00:00

19 lines
599 B
Swift

// swift-tools-version:5.9
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/6.11.4/RiveRuntime.xcframework.zip",
checksum: "041c564897441e867dc1d7cd057ec46da61bdd296a8091c00508e126bf9d06e8"
)
]
)