forked from braze-inc/braze-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
110 lines (108 loc) · 2.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "braze-swift-sdk",
defaultLocalization: "en",
platforms: [
.iOS(.v12),
.macCatalyst(.v13),
.tvOS(.v12),
.visionOS(.v1)
],
products: [
.library(
name: "BrazeKit",
targets: ["BrazeKit", "BrazeKitResources"]
),
.library(
name: "BrazeUI",
targets: ["BrazeUI"]
),
.library(
name: "BrazeLocation",
targets: ["BrazeLocation", "BrazeLocationResources"]
),
.library(
name: "BrazeNotificationService",
targets: ["BrazeNotificationService"]
),
.library(
name: "BrazePushStory",
targets: ["BrazePushStory"]
),
.library(
name: "BrazeKitCompat",
targets: ["BrazeKitCompat"]
),
.library(
name: "BrazeUICompat",
targets: ["BrazeUICompat"]
),
],
dependencies: [
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.18.7"),
/* ${dependencies-start} */
/* ${dependencies-end} */
],
targets: [
.binaryTarget(
name: "BrazeKit",
url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/8.0.1/BrazeKit.zip",
checksum: "8ba73f7f193f4ea52d8673535b12c224cfb16bfcc1683e52a0c267addce2beb7"
),
.target(
name: "BrazeKitResources",
resources: [
.process("Resources"),
]
),
.target(
name: "BrazeUI",
dependencies: [
.target(name: "BrazeKit"),
],
resources: [.process("Resources")]
),
.binaryTarget(
name: "BrazeLocation",
url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/8.0.1/BrazeLocation.zip",
checksum: "22753521e3cebbd1ec0b0986339b10b03f00a3258ecf4c209066de575b98d630"
),
.target(
name: "BrazeLocationResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeNotificationService",
url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/8.0.1/BrazeNotificationService.zip",
checksum: "5c17a259982cea0aaa06ee59ef64f52f0fb0325bdd973d7ccfe954babd9179e2"
),
.binaryTarget(
name: "BrazePushStory",
url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/8.0.1/BrazePushStory.zip",
checksum: "ce056068074e29b218eda70c1dbf60d942905e48183384c530b408b9dbe2aee2"
),
.target(
name: "BrazeKitCompat",
dependencies: [
.target(name: "BrazeKit"),
.target(name: "BrazeLocation"),
]
),
.target(
name: "BrazeUICompat",
dependencies: [
"BrazeKitCompat",
"SDWebImage",
],
resources: [
.process("ABKNewsFeed/Resources"),
.process("ABKInAppMessage/Resources"),
.process("ABKContentCards/Resources")
],
publicHeadersPath: "include/AppboyUI"
),
]
)