-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
118 lines (116 loc) · 3.53 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
111
112
113
114
115
116
117
118
// 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", "BrazeUIResources"]
),
.library(
name: "BrazeLocation",
targets: ["BrazeLocation", "BrazeLocationResources"]
),
.library(
name: "BrazeNotificationService",
targets: ["BrazeNotificationService"]
),
.library(
name: "BrazePushStory",
targets: ["BrazePushStory", "BrazePushStoryResources"]
),
.library(
name: "BrazeKitCompat",
targets: ["BrazeKitCompat"]
),
.library(
name: "BrazeUICompat",
targets: ["BrazeUICompat", "BrazeUICompatResources"]
),
],
dependencies: [
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.19.7"),
/* ${dependencies-start} */
/* ${dependencies-end} */
],
targets: [
.binaryTarget(
name: "BrazeKit",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazeKit.zip",
checksum: "7baf15bdd7f6f78476be75e0def3503b1b5b479eaf72f4c61e9c725bdc2f72fa"
),
.target(
name: "BrazeKitResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeUI",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazeUI.zip",
checksum: "e6732bc5e1d6b1ef4087a5656f38ab09a67b1a769e118c0e6f293642fece91aa"
),
.target(
name: "BrazeUIResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeLocation",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazeLocation.zip",
checksum: "f4da6f4e144d817ec9b50996daa9ef7cbbbc7dbd45589b6900f70d7cea80b716"
),
.target(
name: "BrazeLocationResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeNotificationService",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazeNotificationService.zip",
checksum: "491f300cd9d69e00050b0480dd096a9fac742cebbf2f024fc0b5535a88e8d19c"
),
.binaryTarget(
name: "BrazePushStory",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazePushStory.zip",
checksum: "a93c7d929a759aa0f3287ddec27b2844d84b15580029aa4bb5c68b9633ab6df4"
),
.target(
name: "BrazePushStoryResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeKitCompat",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazeKitCompat.zip",
checksum: "d2ba6aafd93983c3b97c77b2fb880d66b9db4a1e6ae1ca23bf5b423ea4570d47"
),
.binaryTarget(
name: "BrazeUICompat",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.3.0/BrazeUICompat.zip",
checksum: "713bac98a918af0b3f82b1015083f99ed518ce427cb0113e3fba160bcc523d98"
),
.target(
name: "BrazeUICompatResources",
resources: [
.process("ABKNewsFeed/Resources"),
.process("ABKInAppMessage/Resources"),
.process("ABKContentCards/Resources"),
]
),
]
)