feat(android-nav3): [Android Nav3 3] Track navigation state transitions - #6108
Merged
0xadam-brown merged 1 commit intoSep 16, 2026
Merged
0xadam-brown merged 1 commit into
0xadam-brown merged 1 commit into
Conversation
This was referenced Sep 12, 2026
Contributor
|
9 tasks
📲 Install BuildsAndroid
|
Add the observer layer that turns Navigation 3 back stack changes into breadcrumbs, scope state, and navigation transactions. This is also the point where the module starts carrying generated BuildConfig version metadata and its first non-empty API snapshot.
0xadam-brown
force-pushed
the
feat/android-nav3-module-2-routes
branch
from
September 16, 2026 03:31
addea5d to
c9f806c
Compare
0xadam-brown
force-pushed
the
feat/android-nav3-module-3-observer
branch
from
September 16, 2026 03:31
6fbcf31 to
d1870f0
Compare
Base automatically changed from
feat/android-nav3-module-2-routes
to
feat/android-nav3-module-stack
September 16, 2026 03:31
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Stack (Android Nav3)
📜 Description
Add the observer layer for Android Nav3.
This PR teaches the module how to interpret Navigation 3 back stack changes as Sentry state
transitions: breadcrumbs, screen context, back stack context, and route-scoped navigation
transactions.
💡 Motivation and Context
With route modeling in place, the next boundary is the state machine that reacts to navigation
changes. Keeping that behavior separate makes it easier to review lifecycle and tracing semantics
without mixing in Compose effect concerns yet.
💚 How did you test it?
./gradlew :sentry-android-navigation3:testReleaseUnitTest./gradlew spotlessApply./gradlew apiDump📝 Checklist
sendDefaultPIIis enabled.🔮 Next steps
Introduce the Compose-facing effect that owns this observer in application code.
#skip-changelog