-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
36 lines (34 loc) · 1.05 KB
/
Package.swift
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
34
35
36
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "HeapNotificationAutocapture",
platforms: [
.macOS(.v11),
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13),
],
products: [
.library(name: "HeapNotificationAutocapture", targets: [
"__HeapNotificationAutocapture",
]),
],
dependencies: [
.package(url: "https://github.com/heap/heap-swift-core-sdk.git", from: "0.8.0"),
],
targets: [
.target(
name: "__HeapNotificationAutocapture",
dependencies: [
.product(name: "HeapSwiftCore", package: "heap-swift-core-sdk"),
"HeapNotificationAutocapture",
]
),
.binaryTarget(
name: "HeapNotificationAutocapture",
url: "https://github.com/heap/heap-notification-autocapture-sdk/releases/download/0.8.0/package.zip",
checksum: "6f7383d8e5847f9040854ad3973c0d07cb98c538251456d17aa3a06818e1d7d0"
)
],
swiftLanguageVersions: [.v5]
)