[Swift/Kotlin] Change default link open behaviour to in-app browser by default - #232
Open
markmur wants to merge 2 commits into
Open
[Swift/Kotlin] Change default link open behaviour to in-app browser by default#232markmur wants to merge 2 commits into
markmur wants to merge 2 commits into
Conversation
markmur
force-pushed
the
change-link-open-behaviour
branch
from
May 28, 2026 14:58
59568ed to
9931f99
Compare
markmur
force-pushed
the
change-link-open-behaviour
branch
from
June 26, 2026 14:22
9931f99 to
1d6e09a
Compare
markmur
marked this pull request as ready for review
June 26, 2026 14:24
markmur
force-pushed
the
change-link-open-behaviour
branch
from
June 26, 2026 15:25
1d6e09a to
d76f6dd
Compare
Package Size
Android file breakdown
Measured from the PR base SHA and PR head SHA. The file breakdown shows uncompressed sizes within each package artifact, so individual files do not sum to the compressed artifact total. This comment reports package artifact sizes only; it is not a final app binary-size report. |
markmur
force-pushed
the
change-link-open-behaviour
branch
from
July 7, 2026 10:35
6484430 to
b896fb4
Compare
markmur
force-pushed
the
change-link-open-behaviour
branch
from
July 27, 2026 15:36
b896fb4 to
158768e
Compare
Install this buildOpen Tophat, select your target device, then click Install. Links open on the Mac running Tophat.
Checkout Kit E2E results
|
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.
Delegated web links (
window.openand similar) previously bounced buyers out to the platform's external browser, which breaks flow for things like terms/policy pages opened mid-checkout. This flips the default so HTTPS links open in an in-app surface —SFSafariViewControlleron iOS, Custom Tabs on Android — whilemailto:,tel:, and custom schemes continue routing throughUIApplication.open/Intent.ACTION_VIEW. Merchants who want the old behavior can still register aCheckoutProtocol.windowOpenhandler.Try the sample apps and tap a delegated link in checkout (e.g. a policy link); it should stay in-app. The settings screen lets you toggle the alternative "External app" handler to verify the override path.