-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
33 lines (31 loc) · 1.08 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
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "TealiumBranch",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "TealiumBranch",
targets: ["TealiumBranch"]),
],
dependencies: [
.package(name: "TealiumSwift", url: "https://github.com/tealium/tealium-swift", .upToNextMajor(from: "2.12.0")),
.package(name: "Branch", url: "https://github.com/BranchMetrics/ios-branch-sdk-spm", .upToNextMajor(from: "1.40.1"))
],
targets: [
.target(
name: "TealiumBranch",
dependencies: [
.product(name: "TealiumCore", package: "TealiumSwift"),
.product(name: "TealiumRemoteCommands", package: "TealiumSwift"),
.product(name: "Branch", package: "Branch")
],
path: "Sources"),
.testTarget(
name: "TealiumBranchTests",
dependencies: ["TealiumBranch"]),
]
)