-
-
Notifications
You must be signed in to change notification settings - Fork 352
Removes temporary flags after Cocoa Bump #5038
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
antonis
wants to merge
23
commits into
deps/scripts/update-cocoa.sh
Choose a base branch
from
antonis/remove_cocoa_flags
base: deps/scripts/update-cocoa.sh
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
6b7aad8
chore: update scripts/update-cocoa.sh to 8.54.0
web-flow 83f91bb
Remove Cocoa Flags
antonis 8ae835d
Update sample app native initialisation example
antonis 702b2fc
Remove unused imports
antonis ed6a296
chore: update scripts/update-cocoa.sh to 8.54.0
web-flow 1d95a86
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 54af75e
Test with cocoa fix
antonis c59bb69
Trigger CI
antonis a67956f
Revert "Trigger CI"
antonis d6c0afc
Revert "Test with cocoa fix"
antonis ef4dd63
chore: update scripts/update-cocoa.sh to 8.54.0
web-flow eed4e18
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 8956b09
Test with 8.54.1-alpha.1
antonis 3d17397
Test with 8.54.1-apha.2
antonis 4ea0cda
trigger ci
antonis 4f3abd3
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 584af1e
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis dcd3b15
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 5124b3c
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 4b795ed
Remove duplicate changelog
antonis 29f79b9
ref: Rename SentryNativeInitialiser to SentryNativeInitializer
antonis c3af0db
Revert unneeded changes
antonis 5dc8855
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,7 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
@interface SentryNativeInitializer : NSObject | ||
|
||
+ (void)initializeSentry; | ||
|
||
@end |
This file contains hidden or 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,38 @@ | ||
#import "SentryNativeInitializer.h" | ||
@import Sentry; | ||
|
||
@implementation SentryNativeInitializer | ||
|
||
+ (void)initializeSentry | ||
{ | ||
[SentrySDK startWithConfigureOptions:^(SentryOptions *options) { | ||
// Only options set here will apply to the iOS SDK | ||
// Options from JS are not passed to the iOS SDK when initialized manually | ||
options.dsn = @"https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561"; | ||
options.debug = YES; // Enabled debug when first installing is always helpful | ||
|
||
options.beforeSend = ^SentryEvent *(SentryEvent *event) | ||
{ | ||
// We don't want to send an event after startup that came from a Unhandled JS Exception | ||
// of react native Because we sent it already before the app crashed. | ||
if (nil != event.exceptions.firstObject.type && | ||
[event.exceptions.firstObject.type rangeOfString:@"Unhandled JS Exception"].location | ||
!= NSNotFound) { | ||
NSLog(@"Unhandled JS Exception"); | ||
return nil; | ||
} | ||
|
||
return event; | ||
}; | ||
|
||
// Enable the App start and Frames tracking measurements | ||
// If this is disabled the app start and frames tracking | ||
// won't be passed from native to JS transactions | ||
PrivateSentrySDKOnly.appStartMeasurementHybridSDKMode = true; | ||
#if TARGET_OS_IPHONE || TARGET_OS_MACCATALYST | ||
PrivateSentrySDKOnly.framesTrackingMeasurementHybridSDKMode = true; | ||
#endif | ||
}]; | ||
} | ||
|
||
@end |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.