This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
102 lines (100 loc) · 2.73 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
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "braze-swift-sdk",
defaultLocalization: "en",
platforms: [
.iOS(.v13),
.tvOS(.v11)
],
products: [
.library(
name: "BrazeKit",
targets: ["BrazeKit", "BrazeKitResources"]
),
.library(
name: "BrazeUI",
targets: ["BrazeUI"]
),
.library(
name: "BrazeLocation",
targets: ["BrazeLocation"]
),
.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.13.2"),
/* ${dependencies-start} */
/* ${dependencies-end} */
],
targets: [
.binaryTarget(
name: "BrazeKit",
url: "https://github.com/braze-inc/braze-swift-sdk-xcode-14-3-preview/releases/download/5.13.0/BrazeKit.zip",
checksum: "0e5d4dafddbdab87e572d1b466014fab52b2f81fb60872a49b13c178efe57c80"
),
.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-xcode-14-3-preview/releases/download/5.13.0/BrazeLocation.zip",
checksum: "7558e2c529ca1b376392d419b2ec327031f566716f2132fbe0352f9479bb5412"
),
.binaryTarget(
name: "BrazeNotificationService",
url: "https://github.com/braze-inc/braze-swift-sdk-xcode-14-3-preview/releases/download/5.13.0/BrazeNotificationService.zip",
checksum: "00047a7c4c4b236dd6a47858da92a4f737f63531891b8c18e9e0f8f7480c0882"
),
.binaryTarget(
name: "BrazePushStory",
url: "https://github.com/braze-inc/braze-swift-sdk-xcode-14-3-preview/releases/download/5.13.0/BrazePushStory.zip",
checksum: "89c6abe123edf7afdcb047ddac8808c7a958efe9f07c092de642b1a8d6375ff2"
),
.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"
),
]
)