feat: add deep linking support for DID routes

- Add DID route schema to deepLinks.ts
- Enable Android app link verification
- Add autoVerify flag to Android manifest

Technical Changes:
- Add did schema with id parameter to deepLinkSchemas
- Add DeepLinkParams type for DID routes
- Set android:autoVerify="true" in intent-filter
- Update manifest to handle DID deep links

This enables proper deep linking for DID-based routes and
allows Android to verify app links automatically. The DID
schema allows direct navigation to DID-specific views via
external links.
This commit is contained in:
Matthew Raymer
2025-03-10 05:00:46 +00:00
parent 46b0c0e7d4
commit 1dfce62969
3 changed files with 17 additions and 12 deletions

View File

@@ -119,6 +119,7 @@ export class DeepLinkHandler {
"invite-one-accept": "invite-one-accept",
"offer-details": "offer-details",
"confirm-gift": "confirm-gift",
did: "did"
};
const routeName = routeMap[path];