-
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.4.0/BrazeKit.zip",
checksum: "784d49022b57d1149a6633f02ccde80ca918d35f7bff70f23bf3d38edd2a874a"
),
.target(
name: "BrazeKitResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeUI",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.4.0/BrazeUI.zip",
checksum: "87205475d27d055073400dc816e559590d24ab210580fc5af06aaef6f84bb6c4"
),
.target(
name: "BrazeUIResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeLocation",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.4.0/BrazeLocation.zip",
checksum: "bf6f26d308806fe80e39e17170b087eb52bdcbc73699f45d27aa0c35a8931f27"
),
.target(
name: "BrazeLocationResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeNotificationService",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.4.0/BrazeNotificationService.zip",
checksum: "6804bfaf9c5efe55c109a6d63be264f9abc83acd8484718f9ddaef344f1371bf"
),
.binaryTarget(
name: "BrazePushStory",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.4.0/BrazePushStory.zip",
checksum: "c2dacb22b47df113779c6c65231ec27ed781469a1c8ce5ace02942103ffa94e1"
),
.target(
name: "BrazePushStoryResources",
resources: [
.process("Resources"),
]
),
.binaryTarget(
name: "BrazeKitCompat",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.4.0/BrazeKitCompat.zip",
checksum: "71877e67ec03a9a3f9653d26e29782af1c4a3e31bad7aeb14754c02a090b7782"
),
.binaryTarget(
name: "BrazeUICompat",
url: "https://github.com/braze-inc/braze-swift-sdk-prebuilt-static/releases/download/11.4.0/BrazeUICompat.zip",
checksum: "88bf70531bf02529e938b918a1536efca1628ec9cb3567ffc1dee6be86f6e249"
),
.target(
name: "BrazeUICompatResources",
resources: [
.process("ABKNewsFeed/Resources"),
.process("ABKInAppMessage/Resources"),
.process("ABKContentCards/Resources"),
]
),
]
)