-
-
Notifications
You must be signed in to change notification settings - Fork 32
Conversation
@@ -70,7 +70,7 @@ android { | |||
dependencies { | |||
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar")))) | |||
|
|||
implementation("io.sentry:sentry-android:2.0.0-beta02") | |||
implementation("io.sentry:sentry-android:2.0.0-rc01") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this supposed to go in this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it could be separated, but it doesn't affect anything, my bad
scope.setUser(user); | ||
scope.setTag("tag", "tag"); | ||
}); | ||
Sentry.addBreadcrumb("Breadcrumb"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could demo here the beforeBreadcrumb
dropping a crumb too. Would be nice.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be done on MyApplication
though.
Codecov Report
@@ Coverage Diff @@
## master #239 +/- ##
============================================
- Coverage 58.13% 57.76% -0.37%
+ Complexity 574 569 -5
============================================
Files 72 72
Lines 2706 2692 -14
Branches 237 235 -2
============================================
- Hits 1573 1555 -18
- Misses 1014 1016 +2
- Partials 119 121 +2
Continue to review full report at Codecov.
|
📢 Type of change
📜 Description
refactoring breadcrumbs callback.
💡 Motivation and Context
callbacks were called on Hub and Scope, but could it be placed and logged together.
💚 How did you test it?
executing it, there is unit tests already.
📝 Checklist
🔮 Next steps