Files
rive-ios/Package.swift
2025-12-03 17:55:25 +00:00

19 lines
600 B
Swift

// 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/6.12.3/RiveRuntime.xcframework.zip",
checksum: "db56248cab437b46862ca86ebbe0661f96194bd5f95bd23febd3ce9f931a2cf8"
)
]
)