Skip to content

Commit a4e2e38

Browse files
committed
update Package.swift to use remote sentry-cocoa
1 parent bb6d8ac commit a4e2e38

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

flutter/ios/sentry_flutter/Package.swift

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,23 @@ let package = Package(
1313
.library(name: "sentry-flutter", targets: ["sentry_flutter", "sentry_flutter_objc"])
1414
],
1515
dependencies: [
16-
// .package(url: "https://github.com/getsentry/sentry-cocoa", from: "8.36.0")
16+
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "8.37.0")
1717
],
1818
targets: [
1919
.target(
2020
name: "sentry_flutter",
2121
dependencies: [
2222
"sentry_flutter_objc",
23-
.target(name: "Sentry")
24-
// .product(name: "Sentry", package: "sentry-cocoa")
23+
.product(name: "Sentry", package: "sentry-cocoa")
2524
]
2625
),
2726
// SPM does not support mixed-language targets, so we need to move the ObjC files into a separate one
2827
.target(
2928
name: "sentry_flutter_objc",
3029
dependencies: [
3130
.target(name: "Sentry")
32-
// .product(name: "Sentry", package: "sentry-cocoa")
31+
.product(name: "Sentry", package: "sentry-cocoa")
3332
]
34-
),
35-
.binaryTarget(
36-
name: "Sentry",
37-
path: "Sentry.xcframework"
3833
)
3934
]
4035
)

0 commit comments

Comments
 (0)