This repository was archived by the owner on Sep 14, 2020. It is now read-only.
v2.10.0
This release alters the behaviour of the notifier to track sessions automatically.
A session will be automatically captured on each app launch and sent to https://sessions.bugsnag.com.
If you use Bugsnag On-Premise, it is recommended that you set your notify and session endpoints
via config.setEndpoints(String notify, String sessions) on Android, and config.setEndpoints(notify:sessions:) on iOS. You should also initialise the Android/iOS components by passing a config parameter:
Configuration config = new Configuration("your-api-key-here");
config.setEndpoints("https://notify.example.com", "https://sessions.example.com");
BugsnagReactNative.start(this, config);BugsnagConfiguration *config = [BugsnagConfiguration new];
[config setEndpointsForNotify:@"http://notify.example.com"
sessions:@"http://sessions.example.com"];
[BugsnagReactNative startWithConfiguration:config];-
Upgrade bugsnag-android to v4.5.0:
-
Upgrade bugsnag-cocoa to v5.16.0:
Bug fixes
- (android) Reduce gratutious android logging
#245