-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathPackage.swift
52 lines (50 loc) · 1.36 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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "Mindbox",
platforms: [.iOS(.v12)],
products: [
.library(
name: "Mindbox",
targets: ["Mindbox"]),
.library(
name: "MindboxNotificationsService",
targets: ["MindboxNotifications"]),
.library(
name: "MindboxNotificationsContent",
targets: ["MindboxNotifications"])
],
dependencies: [
],
targets: [
.target(
name: "Mindbox",
dependencies: ["SDKVersionProvider", "MindboxLogger"],
path: "Mindbox",
exclude: ["Info.plist"],
resources: [
.process("PrivacyInfo.xcprivacy")
]
),
.target(
name: "MindboxNotifications",
dependencies: ["SDKVersionProvider", "MindboxLogger"],
path: "MindboxNotifications",
exclude: ["Info.plist"],
resources: [
.process("PrivacyInfo.xcprivacy")
]
),
.target(
name: "SDKVersionProvider",
path: "SDKVersionProvider"
),
.target(
name: "MindboxLogger",
path: "MindboxLogger",
resources: [
.process("PrivacyInfo.xcprivacy")
]
)
]
)