Skip to content

Commit a27eb6e

Browse files
committed
chore: updating Package.swift
1 parent 1c89b31 commit a27eb6e

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

Package.swift

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,22 @@ let package = Package(
77
name: "SharkCardScan",
88
platforms: [ .iOS(.v13)],
99
products: [
10-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1110
.library(
1211
name: "SharkCardScan",
1312
targets: ["SharkCardScan"]),
1413
],
1514
dependencies: [
16-
// Dependencies declare other packages that this package depends on.
17-
// .package(url: /* package url */, from: "1.0.0"), dependencies: [
18-
.package(
15+
.package(
1916
name: "SharkUtils",
2017
url: "https://github.com/gymshark/ios-shark-utils.git",
2118
.exact("1.0.5")),
2219
],
2320
targets: [
24-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
25-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2621
.target(
2722
name: "SharkCardScan",
28-
dependencies: ["SharkUtils"]),
23+
dependencies: ["SharkUtils"],
24+
path: "Sources",
25+
resources: [.copy("Resources/PrivacyInfo.xcprivacy")]),
2926
.testTarget(
3027
name: "SharkCardScanTests",
3128
dependencies: ["SharkCardScan"]),

0 commit comments

Comments
 (0)