Skip to content

Commit

Permalink
chore: updated Package.swift (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pallab Maiti authored Sep 19, 2023
1 parent 5bae2bf commit c0cf773
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@ let package = Package(
],
dependencies: [
.package(name: "RudderKit", url: "https://github.com/rudderlabs/rudder-ios-kit", from: "1.4.0"),
.package(name: "RSCrashReporter", url: "https://github.com/rudderlabs/crash-reporter-ios", from: "1.0.0"),
],
targets: [
.target(
name: "MetricsReporter",
dependencies: [
.product(name: "RudderKit", package: "RudderKit"),
.product(name: "RSCrashReporter", package: "RSCrashReporter"),
],
path: "Sources",
sources: ["Classes/"]
),
.testTarget(
name: "MetricsReporterTests",
dependencies: ["MetricsReporter", "RudderKit"],
dependencies: ["MetricsReporter", "RudderKit", "RSCrashReporter"],
path: "MetricsReporterTests"
),
]
Expand Down

0 comments on commit c0cf773

Please sign in to comment.