You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 26, 2022. It is now read-only.
The Bugsnag team has released an official version of their SDK. Since they are a team and very close to the APIs and features of the iOS and Android SDKs, it is with a heavy and joyful heart that this repo will be archived.
This official package is published under the community package name, but it has some different API access. If you're upgrading to 2.0.1, please use the migration guide below:
bugsnag_flutter/bugsnag.dart is now bugsnag_flutter/bugsnag_flutter.dart
2.0.1 uses a single API key instead of platform API keys. Use ternaries like Platform.isAndroid ? androidApiKey : iosApiKey when using bugsnag.start
.setUser accepts a named ID instead of an unnamed ID in the first position
BugsnagObserver is now BugsnagNavigatorObserver
Bugsnag.instance is now a global bugsnag
Bugsnag.instance.recordError is now bugsnag.notify
Bugsnag.instance.recordFlutterError should be translated as bugsnag.notify(error.exception, error.stack)
BugsnagBreadcrumb is now BreadcrumbType
The text was updated successfully, but these errors were encountered:
The Bugsnag team has released an official version of their SDK. Since they are a team and very close to the APIs and features of the iOS and Android SDKs, it is with a heavy and joyful heart that this repo will be archived.
This official package is published under the community package name, but it has some different API access. If you're upgrading to
2.0.1
, please use the migration guide below:bugsnag_flutter/bugsnag.dart
is nowbugsnag_flutter/bugsnag_flutter.dart
Platform.isAndroid ? androidApiKey : iosApiKey
when usingbugsnag.start
.setUser
accepts a named ID instead of an unnamed ID in the first positionBugsnagObserver
is nowBugsnagNavigatorObserver
Bugsnag.instance
is now a globalbugsnag
Bugsnag.instance.recordError
is nowbugsnag.notify
Bugsnag.instance.recordFlutterError
should be translated asbugsnag.notify(error.exception, error.stack)
BugsnagBreadcrumb
is nowBreadcrumbType
The text was updated successfully, but these errors were encountered: