-
-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Make lifecycle breadcrumbs logged in fragments customizable (#1734…
…) (#2299) Co-authored-by: Roman Zavarnitsyn <[email protected]>
- Loading branch information
1 parent
b516cf3
commit b7fb83c
Showing
7 changed files
with
104 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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 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 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
15 changes: 15 additions & 0 deletions
15
sentry-android-fragment/src/main/java/io/sentry/android/fragment/FragmentLifecycleState.kt
This file contains 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,15 @@ | ||
package io.sentry.android.fragment | ||
|
||
enum class FragmentLifecycleState(internal val breadcrumbName: String) { | ||
ATTACHED("attached"), | ||
SAVE_INSTANCE_STATE("save instance state"), | ||
CREATED("created"), | ||
VIEW_CREATED("view created"), | ||
STARTED("started"), | ||
RESUMED("resumed"), | ||
PAUSED("paused"), | ||
STOPPED("stopped"), | ||
VIEW_DESTROYED("view destroyed"), | ||
DESTROYED("destroyed"), | ||
DETACHED("detached") | ||
} |
This file contains 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 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 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