-
Notifications
You must be signed in to change notification settings - Fork 982
/
Package.swift
157 lines (156 loc) · 4.94 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Stripe",
defaultLocalization: "en",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "Stripe",
targets: ["Stripe"]
),
.library(
name: "StripePayments",
targets: ["StripePayments"]
),
.library(
name: "StripePaymentsUI",
targets: ["StripePaymentsUI"]
),
.library(
name: "StripePaymentSheet",
targets: ["StripePaymentSheet"]
),
.library(
name: "StripeApplePay",
targets: ["StripeApplePay"]
),
.library(
name: "StripeIdentity",
targets: ["StripeIdentity"]
),
.library(
name: "StripeCardScan",
targets: ["StripeCardScan"]
),
.library(
name: "StripeFinancialConnections",
targets: ["StripeFinancialConnections"]
)
],
targets: [
.target(
name: "Stripe",
dependencies: ["Stripe3DS2", "StripeCore", "StripeApplePay", "StripeUICore", "StripePayments", "StripePaymentsUI"],
path: "Stripe/StripeiOS",
exclude: ["Info.plist"],
resources: [
.process("Resources/StripeiOS.xcassets"),
.process("PrivacyInfo.xcprivacy")
]
),
.target(
name: "Stripe3DS2",
path: "Stripe3DS2/Stripe3DS2",
exclude: ["Info.plist", "Resources/CertificateFiles", "include/Stripe3DS2-Prefix.pch"],
resources: [
.process("Resources"),
.process("PrivacyInfo.xcprivacy")
],
cSettings: [
.headerSearchPath(".")
]
),
.target(
name: "StripeCameraCore",
dependencies: ["StripeCore"],
path: "StripeCameraCore/StripeCameraCore",
exclude: ["Info.plist"]
),
.target(
name: "StripeCore",
path: "StripeCore/StripeCore",
exclude: ["Info.plist"],
resources: [
.process("PrivacyInfo.xcprivacy")
]
),
.target(
name: "StripeApplePay",
dependencies: ["StripeCore"],
path: "StripeApplePay/StripeApplePay",
exclude: ["Info.plist"]
),
.target(
name: "StripeIdentity",
dependencies: ["StripeCore", "StripeUICore", "StripeCameraCore"],
path: "StripeIdentity/StripeIdentity",
exclude: ["Info.plist"],
resources: [
.process("Resources/Images")
]
),
.target(
name: "StripeCardScan",
dependencies: ["StripeCore"],
path: "StripeCardScan/StripeCardScan",
exclude: ["Info.plist"],
resources: [
.copy("Resources/CompiledModels/UxModel.mlmodelc"),
.copy("Resources/CompiledModels/SSDOcr.mlmodelc")
]
),
.target(
name: "StripeUICore",
dependencies: ["StripeCore"],
path: "StripeUICore/StripeUICore",
exclude: ["Info.plist"],
resources: [
.process("Resources/StripeUICore.xcassets"),
.process("Resources/JSON")
]
),
.target(
name: "StripePayments",
dependencies: ["StripeCore", "Stripe3DS2"],
path: "StripePayments/StripePayments",
exclude: ["Info.plist"],
resources: [
.process("Resources")
]
),
.target(
name: "StripePaymentsUI",
dependencies: ["StripeCore", "Stripe3DS2", "StripePayments", "StripeUICore"],
path: "StripePaymentsUI/StripePaymentsUI",
exclude: ["Info.plist"],
resources: [
.process("Resources/StripePaymentsUI.xcassets"),
.process("Resources/JSON")
]
),
.target(
name: "StripePaymentSheet",
dependencies: ["StripePaymentsUI", "StripeApplePay", "StripePayments", "StripeCore", "StripeUICore"],
path: "StripePaymentSheet/StripePaymentSheet",
exclude: ["Info.plist"],
resources: [
.process("Resources/StripePaymentSheet.xcassets"),
.process("Resources/JSON"),
.process("PrivacyInfo.xcprivacy")
]
),
.target(
name: "StripeFinancialConnections",
dependencies: ["StripeCore", "StripeUICore"],
path: "StripeFinancialConnections/StripeFinancialConnections",
exclude: ["Info.plist"],
resources: [
.process("Resources/Images"),
.process("PrivacyInfo.xcprivacy")
]
)
]
)