android: extend support for protocol navigation to Android - #815
Merged
Merged
Conversation
willh-ts
force-pushed
the
will/navigate
branch
2 times, most recently
from
June 30, 2026 14:10
2334b8a to
88f4d5d
Compare
barnstar
previously requested changes
Jun 30, 2026
barnstar
left a comment
Member
There was a problem hiding this comment.
Mainly, I think we need to be really conservative on performing actions with deeplinks (and perhaps audit iOS/macOS if we allow that there). Navigation is perfectly fine, but the idea that clicking a link can change what exit node I'm using has some implications we need to consider before rolling it out.
kari-ts
reviewed
Jul 2, 2026
willh-ts
force-pushed
the
will/navigate
branch
2 times, most recently
from
July 2, 2026 20:09
43147d3 to
7af84d0
Compare
kari-ts
reviewed
Aug 28, 2026
Collaborator
|
LGTM once conflicts are resolved |
willh-ts
force-pushed
the
will/navigate
branch
from
August 31, 2026 15:06
7af84d0 to
ff19299
Compare
Extends support for the `navigate` path of the `tailscale:` protocol to Android, mirroring the existing macOS routes & pending iOS routes. All settings tabs without existing routes simply open the main settings view for now. ``` tailscale://navigate/main/devices tailscale://navigate/main/devices/<computedName or stableID> tailscale://navigate/main/exit-nodes tailscale://navigate/main/exit-nodes/<stableID> tailscale://navigate/main/exit-nodes/location/<country> tailscale://navigate/settings[/<anyTab>] ``` The `scripts/deeplink-probe.sh` script can be used to trigger the application to navigate to a given route by passing that to it. e.g., `./tool/go run ./scripts/deeplink-probe.go main/devices` updates tailscale/corp#41056 Signed-off-by: Will Hannah <willh@tailscale.com>
willh-ts
force-pushed
the
will/navigate
branch
from
August 31, 2026 15:10
ff19299 to
3229008
Compare
kari-ts
approved these changes
Aug 31, 2026
serein-213
pushed a commit
to serein-213/tailscale-android
that referenced
this pull request
Sep 21, 2026
…#815) Extends support for the `navigate` path of the `tailscale:` protocol to Android, mirroring the existing macOS routes & pending iOS routes. All settings tabs without existing routes simply open the main settings view for now. ``` tailscale://navigate/main/devices tailscale://navigate/main/devices/<computedName or stableID> tailscale://navigate/main/exit-nodes tailscale://navigate/main/exit-nodes/<stableID> tailscale://navigate/main/exit-nodes/location/<country> tailscale://navigate/settings[/<anyTab>] ``` The `scripts/deeplink-probe.sh` script can be used to trigger the application to navigate to a given route by passing that to it. e.g., `./tool/go run ./scripts/deeplink-probe.go main/devices` updates tailscale/corp#41056 Signed-off-by: Will Hannah <willh@tailscale.com> (cherry picked from commit 0d5a376)
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.
Extends support for the
navigatepath of thetailscale:protocol to Android,mirroring the existing macOS routes & pending iOS routes.
All settings tabs without existing routes simply open the main settings view
for now.
The
scripts/deeplink-probe.goscript can be used to trigger the application tonavigate to a given route by passing that to it.
e.g.,
./tool/go run ./scripts/deeplink-probe.go main/devicesupdates tailscale/corp#41056