-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (26 loc) · 817 Bytes
/
Copy pathPackage.swift
File metadata and controls
29 lines (26 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// swift-tools-version: 5.10
// The binary target URL and checksum are stamped by the "SPM Release"
// workflow — do not edit them by hand. The buildable source package lives
// at packages/font-manager/src-native/ios/FontManager.
import PackageDescription
let package = Package(
name: "FontManager",
platforms: [
.iOS(.v13),
.visionOS(.v1),
.tvOS(.v13)
],
products: [
.library(
name: "FontManager",
targets: ["FontManager"]
),
],
targets: [
.binaryTarget(
name: "FontManager",
url: "https://github.com/NativeScript/font-manager/releases/download/1.0.18/FontManager.xcframework.zip",
checksum: "c4f9fdd4b768f7ede474a8864307665cdd5c8adec4ffb29bb26446db4ba198c1"
),
]
)