Fix Google Play Console flagging the test app's deep links - #821
Draft
mickael-menu wants to merge 1 commit into
Draft
mickael-menu wants to merge 1 commit into
mickael-menu wants to merge 1 commit into
Conversation
The Play Console flagged the test app with "Direct links don't work" because the ImportActivity VIEW intent filters declared http/https schemes with a wildcard host, which deep link validation cannot verify. These schemes (and BROWSABLE) are unnecessary for side-loading, since apps and browsers hand files over via content:// URIs. Remove them along with the vestigial app scheme, document the rationale in the manifest, and add a side-loading section to the "Opening a publication" guide. Fixes #426 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This branch has not been deployed
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.
The Play Console flagged the test app with "Direct links don't work" because the
ImportActivityVIEWintent filters declaredhttp/httpsschemes with a wildcard host, which deep link validation cannot verify.These schemes (and
BROWSABLE) are unnecessary for side-loading: apps and browsers hand files over viacontent://URIs, and a shared URL still reaches the HTTP import path through theSEND text/plainfilter. TheVIEWfilters are now restricted to thecontentandfileschemes, the vestigialappscheme is dropped, the rationale is documented in the manifest, and the "Opening a publication" guide gains a short side-loading section pointing at the manifest as the reference pattern.No library code changed — test app and docs only.
Fixes #426
🤖 Generated with Claude Code