mirror of
https://github.com/rive-app/rive-ios.git
synced 2026-01-18 17:11:28 +01:00
24 lines
701 B
Swift
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")]
|
|
)
|
|
]
|
|
)
|