Skip to content

Commit 35cdf1b

Browse files
Update package manifest
1 parent ec2159f commit 35cdf1b

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CheckoutComponentsPackage/dummy.swift

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Package.swift

+15-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,27 @@ let package = Package(
1313
.library(
1414
name: "CheckoutComponents",
1515
targets: [
16-
"CheckoutComponentsSDK"
16+
"CheckoutComponentsPackage"
1717
]
1818
),
1919
],
20+
dependencies: [
21+
.package(
22+
url: "https://github.com/checkout/checkout-risk-sdk-ios",
23+
from: "4.0.0"
24+
)
25+
],
2026
targets: [
27+
.target(
28+
name: "CheckoutComponentsPackage",
29+
dependencies: [
30+
.product(name: "Risk", package: "checkout-risk-sdk-ios"),
31+
.target(name: "CheckoutComponentsSDK")
32+
],
33+
path: "CheckoutComponentsPackage"),
2134
.binaryTarget(
2235
name: "CheckoutComponentsSDK",
2336
path: "SDK/CheckoutComponentsSDK.xcframework"
2437
)
2538
]
26-
)
39+
)

0 commit comments

Comments
 (0)