-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps(react-native): Update bugsnag-cocoa to v6.7.0
- Loading branch information
1 parent
ed3c137
commit 57162de
Showing
34 changed files
with
391 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6476eb4cf6a8cc62683f5935b83226658c6ebd90 | ||
dc551c901478f23ca81684188e2ae62d98afc26c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/react-native/ios/vendor/bugsnag-cocoa/Bugsnag/BugsnagLastRunInfo+Private.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// BugsnagLastRunInfo+Private.h | ||
// Bugsnag | ||
// | ||
// Created by Nick Dowell on 10/02/2021. | ||
// Copyright © 2021 Bugsnag Inc. All rights reserved. | ||
// | ||
|
||
#include "BugsnagLastRunInfo.h" | ||
|
||
@interface BugsnagLastRunInfo () | ||
|
||
- (instancetype)initWithConsecutiveLaunchCrashes:(NSUInteger)consecutiveLaunchCrashes | ||
crashed:(BOOL)crashed | ||
crashedDuringLaunch:(BOOL)crashedDuringLaunch; | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
packages/react-native/ios/vendor/bugsnag-cocoa/Bugsnag/BugsnagLastRunInfo.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// BugsnagLastRunInfo.m | ||
// Bugsnag | ||
// | ||
// Created by Nick Dowell on 10/02/2021. | ||
// Copyright © 2021 Bugsnag Inc. All rights reserved. | ||
// | ||
|
||
#import "BugsnagLastRunInfo+Private.h" | ||
|
||
@implementation BugsnagLastRunInfo | ||
|
||
- (instancetype)initWithConsecutiveLaunchCrashes:(NSUInteger)consecutiveLaunchCrashes | ||
crashed:(BOOL)crashed | ||
crashedDuringLaunch:(BOOL)crashedDuringLaunch { | ||
if (self = [super init]) { | ||
_consecutiveLaunchCrashes = consecutiveLaunchCrashes; | ||
_crashed = crashed; | ||
_crashedDuringLaunch = crashedDuringLaunch; | ||
} | ||
return self; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.