Skip to content

Commit

Permalink
Merge pull request #364 from bugsnag/LinearityGmbH/fix-catalyst-build
Browse files Browse the repository at this point in the history
Remove condition on CoreTelephony for Mac Catalyst
  • Loading branch information
kstenerud authored Dec 17, 2024
2 parents 88fd510 + 456f3ae commit e729a1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Changelog
* Improved Swift mangled name handling when reporting view spans.
[344](https://github.com/bugsnag/bugsnag-cocoa-performance/pull/344)

### Enhancements

* Removed the platform restriction on CoreTelephony since it's now available on all platforms. This will allow building for Mac Catalyst targets (although this is not yet officially supported).
[364](https://github.com/bugsnag/bugsnag-cocoa-performance/pull/364)

## 1.10.2 (2024-10-31)

* Fixed a crash after shared NSURLSession invalidate
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let package = Package(
linkerSettings: [
.linkedFramework("SystemConfiguration"),
.linkedFramework("UIKit"),
.linkedFramework("CoreTelephony", .when(platforms: [.iOS])),
.linkedFramework("CoreTelephony"),
]
),
.target(
Expand Down

0 comments on commit e729a1f

Please sign in to comment.