From 00d7bbeefe07e69c5c587f51223dbd1ba57f98eb Mon Sep 17 00:00:00 2001 From: Jacob Stephens Date: Sun, 7 Jun 2026 20:48:14 -0400 Subject: [PATCH] web: commit Android assetlinks.json so rebuilds don't drop it The Digital Asset Links file for Android App Links is live at /.well-known/assetlinks.json but was never committed to main (it lived only on the deployed host, from an unmerged android branch). Every `deploy.sh` web rebuild regenerates apps/web/dist from the repo, so the file gets dropped and Android App Links break until it's manually restored. Commit the exact live content (verified against https://cascade.stephens.page) next to the Apple apple-app-site-association so both are reproducible from the repo. Package page.stephens.cascade matches apps/android applicationId. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/web/public/.well-known/assetlinks.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 apps/web/public/.well-known/assetlinks.json diff --git a/apps/web/public/.well-known/assetlinks.json b/apps/web/public/.well-known/assetlinks.json new file mode 100644 index 0000000..63ab917 --- /dev/null +++ b/apps/web/public/.well-known/assetlinks.json @@ -0,0 +1,10 @@ +[ + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "page.stephens.cascade", + "sha256_cert_fingerprints": ["A4:AD:D7:91:39:1A:78:1E:F4:EB:9C:5F:33:61:85:CF:BD:00:5E:CF:71:4A:A7:A3:F3:7B:1D:B3:26:C5:EB:08"] + } + } +]