Files
rive-ios/Package.swift
2024-08-16 23:37:42 +00:00

24 lines
701 B
Swift

// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "RiveRuntime",
platforms: [.iOS("14.0"), .macOS("13.1")],
products: [
.library(
name: "RiveRuntime",
targets: ["RiveRuntime"])],
targets: [
.binaryTarget(
name: "RiveRuntime",
url: "https://github.com/rive-app/rive-ios/releases/download/6.0.4/RiveRuntime.xcframework.zip",
checksum: "15d3fc76e7b14c95b7d9866e3057e1021c30510912ea20db89750b1f6c86b583"
),
.target(
name: "RiveRuntime-Resources",
path: "Resources",
resources: [.copy("PrivacyInfo.xcprivacy")]
)
]
)