forked from braze-inc/braze-segment-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
48 lines (46 loc) · 1.04 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
37
38
39
40
41
42
43
44
45
46
47
48
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "braze-segment-swift",
platforms: [
.iOS("14.0"),
.tvOS("11.0"),
],
products: [
.library(
name: "SegmentBraze",
targets: ["SegmentBraze"]
),
.library(
name: "SegmentBrazeUI",
targets: ["SegmentBrazeUI"]
),
],
dependencies: [
.package(
url: "https://github.com/segmentio/analytics-swift",
from: "1.1.2"
),
.package(
url:"https://github.com/braze-inc/braze-swift-sdk",
from: "6.6.0"
),
],
targets: [
.target(
name: "SegmentBraze",
dependencies: [
.product(name: "Segment", package: "analytics-swift"),
.product(name: "BrazeKit", package: "braze-swift-sdk"),
]
),
.target(
name: "SegmentBrazeUI",
dependencies: [
.product(name: "Segment", package: "analytics-swift"),
.product(name: "BrazeKit", package: "braze-swift-sdk"),
.product(name: "BrazeUI", package: "braze-swift-sdk"),
]
),
]
)