-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathPackage.swift
More file actions
33 lines (31 loc) · 849 Bytes
/
Package.swift
File metadata and controls
33 lines (31 loc) · 849 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
30
31
32
33
// swift-tools-version:6.1
import PackageDescription
let package = Package(
name: "iProov",
platforms: [
.iOS(.v15),
],
products: [
.library(
name: "iProov",
targets: ["iProovTargets"]
),
],
targets: [
.binaryTarget(
name: "iProov",
url: "https://github.com/iProov/ios/releases/download/13.1.1/iProov.xcframework.zip",
checksum: "42d0049ff3e4f9844aff1c7235c1f5955023cd8e6016c8a44e46fef4c9a5a73a"
),
.target(
name: "iProovTargets",
dependencies: [
.target(name: "iProov", condition: .when(platforms: [.iOS])),
],
path: "iProovTargets",
resources: [
.copy("Resources/PrivacyInfo.xcprivacy"),
]
),
]
)