-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
32 lines (31 loc) · 1.13 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
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "HeapContentsquareIntegrationSDK",
platforms: [
.iOS(.v12),
],
products: [
.library(
name: "HeapContentsquareIntegrationSDK",
targets: ["HeapContentsquareIntegrationSDK"])
],
dependencies: [
.package(url: "https://github.com/heap/heap-swift-core-sdk.git", from: "0.7.0"),
.package(url: "https://github.com/ContentSquare/CS_iOS_SDK.git", from: "4.33.0"),
],
targets: [
.target(
name: "HeapContentsquareIntegrationSDK",
dependencies: [
.product(name: "HeapSwiftCore", package: "heap-swift-core-sdk"),
.product(name: "ContentsquareModule", package: "CS_iOS_SDK"),
"HeapContentsquareIntegrationImplementation",
]),
.binaryTarget(
name: "HeapContentsquareIntegrationImplementation",
url: "https://cdn.heapanalytics.com/ios/heap-ios-cs-integration-0.7.1.zip",
checksum: "85465ba57a631f3b1c5ec54afcf81577b95a017dc1476b043f00110a4f8f5f1d"
),
]
)