-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
32 lines (31 loc) · 1016 Bytes
/
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.1
import PackageDescription
let package = Package(
name: "TealiumBraze",
platforms: [
.iOS(.v12)
],
products: [
.library(name: "TealiumBraze", targets: ["TealiumBraze"])
],
dependencies: [
.package(url: "https://github.com/tealium/tealium-swift", .upToNextMajor(from: "2.12.0")),
.package(url: "https://github.com/braze-inc/braze-swift-sdk", .upToNextMajor(from: "9.0.0"))
],
targets: [
.target(
name: "TealiumBraze",
dependencies: [
.product(name: "BrazeKit", package: "braze-swift-sdk"),
.product(name: "TealiumCore", package: "tealium-swift"),
.product(name: "TealiumRemoteCommands", package: "tealium-swift")
],
path: "./Sources"),
.testTarget(
name: "TealiumBrazeTests",
dependencies: [
.target(name: "TealiumBraze")
],
path: "./Tests")
]
)