Releases · getsentry/sentry-android
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
2.3.2
3.0.0-alpha.1
2.3.1
2.3.0
What’s Changed
- fix: converting UTC and ISO timestamp when missing Locale/TimeZone do not error (#505) @marandaneto
- Add console application sample. (#502) @maciejwalkowiak
- Log stacktraces in SystemOutLogger (#498) @maciejwalkowiak
- Add method to add breadcrumb with string parameter. (#501) @maciejwalkowiak
- Call
Sentry#closeon JVM shutdown. (#497) @maciejwalkowiak - ref: sentry-core changes for console app (#473) @marandaneto
Obs: If you are using its own instance of Hub/SentryClient and reflection to set up the SDK to be usable within Libraries, this change may break your code, please fix the renamed classes.
Packages were released on bintray, jcenter and mavenCentral
We'd love to get feedback.
2.2.2
2.2.1
2.2.0
What’s Changed
-
fix: negative session sequence if the date is before java date epoch (#471) @marandaneto
-
fix: deserialise unmapped contexts values from envelope (#470) @marandaneto
-
Bump: sentry-native 0.3.4 (#468) @marandaneto
-
feat: timber integration (#464) @marandaneto
-
To add integrations it requires a manual initialization of the Android SDK.
-
Add the
sentry-android-timberdependency:
implementation 'io.sentry:sentry-android-timber:{version}' // version >= 2.2.0
- Initialize and add the
SentryTimberIntegration:
SentryAndroid.init(this, options -> { // default values: // minEventLevel = ERROR // minBreadcrumbLevel = INFO options.addIntegration(new SentryTimberIntegration()); // custom values for minEventLevel and minBreadcrumbLevel // options.addIntegration(new SentryTimberIntegration(SentryLevel.WARNING, SentryLevel.ERROR)); });
- Use the Timber integration:
try { int x = 1 / 0; } catch (Exception e) { Timber.e(e); }
Packages were released on bintray, jcenter and mavenCentral
We'd love to get feedback.
2.1.7
2.1.6
What’s Changed
- fix: do not lookup sentry-debug-meta but instead load it directly (#445) @marandaneto
- fix: regression on v2.1.5 which can cause a crash on SDK init
Packages were released on bintray, jcenter and mavenCentral
We'd love to get feedback.