From 8c419cbfe9315edbe45852982241eec6b3a494d4 Mon Sep 17 00:00:00 2001 From: Bretton Date: Mon, 1 Dec 2025 19:50:04 -0800 Subject: [PATCH] feat: add Universal Links well-known files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - assetlinks.json for Android App Links - apple-app-site-association for iOS Universal Links Note: iOS file needs TEAM_ID replaced with actual Apple Developer Team ID 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- static/.well-known/apple-app-site-association | 11 +++++++++++ static/.well-known/assetlinks.json | 10 ++++++++++ 2 files changed, 21 insertions(+) create mode 100644 static/.well-known/apple-app-site-association create mode 100644 static/.well-known/assetlinks.json diff --git a/static/.well-known/apple-app-site-association b/static/.well-known/apple-app-site-association new file mode 100644 index 0000000..3c8b4d9 --- /dev/null +++ b/static/.well-known/apple-app-site-association @@ -0,0 +1,11 @@ +{ + "applinks": { + "apps": [], + "details": [ + { + "appID": "TEAM_ID.social.coves", + "paths": ["/app/oauth/callback"] + } + ] + } +} diff --git a/static/.well-known/assetlinks.json b/static/.well-known/assetlinks.json new file mode 100644 index 0000000..4c24cc7 --- /dev/null +++ b/static/.well-known/assetlinks.json @@ -0,0 +1,10 @@ +[{ + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "social.coves", + "sha256_cert_fingerprints": [ + "0B:D8:8C:99:66:25:E5:CD:06:54:80:88:01:6F:B7:38:B9:F4:5B:41:71:F7:95:C8:68:94:87:AD:EA:9F:D9:ED" + ] + } +}] -- 2.51.2