Skip to content

Commit

Permalink
Disable OOM detection for Mac Catalyst apps (#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdowell committed Oct 3, 2022
1 parent 55b60b4 commit 1cededc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Bugsnag/Helpers/BSGDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define BSG_HAVE_BATTERY ( TARGET_OS_IOS || TARGET_OS_WATCH)
#define BSG_HAVE_MACH_EXCEPTIONS (TARGET_OS_OSX || TARGET_OS_IOS )
#define BSG_HAVE_MACH_THREADS (TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_TV )
#define BSG_HAVE_OOM_DETECTION ( TARGET_OS_IOS || TARGET_OS_TV ) && !TARGET_OS_SIMULATOR
#define BSG_HAVE_OOM_DETECTION ( TARGET_OS_IOS || TARGET_OS_TV ) && !TARGET_OS_SIMULATOR && !TARGET_OS_MACCATALYST
#define BSG_HAVE_REACHABILITY (TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_TV )
#define BSG_HAVE_REACHABILITY_WWAN ( TARGET_OS_IOS || TARGET_OS_TV )
#define BSG_HAVE_SIGNAL (TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_TV )
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ Changelog
Objective-C exceptions to be sent at crash time, prior to app termination.
[#1488](https://github.com/bugsnag/bugsnag-cocoa/pull/1488)

### Bug fixes

* Disable OOM detection for Mac Catalyst apps.
[#1489](https://github.com/bugsnag/bugsnag-cocoa/pull/1489)

## 6.23.1 (2022-09-21)

### Bug fixes
Expand Down

0 comments on commit 1cededc

Please sign in to comment.