The example associates the app with every URL on the domain
Source references: 5The Android association requests handle_all_urls and its intent filter has no path restriction; the iOS AASA uses both “*” and “/*” wildcard paths. Copied into production, the app claims substantially more links than the example details route.
If the domain also hosts sign-in, payment, administration, or other product pages, those links may be routed into the app unintentionally. Unsupported paths or parameters could lead users into incorrect flows or decisions based on an unintended deep link.
The source supports this risk. If a user substitutes the placeholders and deploys these association files as written, Android requests handling of all URLs for the app/domain and its intent filter has no path restriction; the iOS configuration also uses all-path wildcards. This could make the app claim links beyond the intended details page. Users can ask the author to scope the Android filter and both association files to required paths and justify any domain-wide association.
```xml<intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="http" android:host="yourdomain.com" /> <data android:scheme="https" /></intent-filter>```Show 4 other places
```json[{ "relation": ["delegate_permission/common.handle_all_urls"], "target": { "namespace": "android_app", "package_name": "com.yourcompany.yourapp", "sha256_cert_fingerprints": ["YOUR_SHA256_FINGERPRINT"] }}]``````json{ "applinks": { "apps": [], "details": [{ "appIDs": ["TEAM_ID.com.yourcompany.yourapp"], "paths": ["*"], "components": [{"/": "/*"}] }] }}```[{ "relation": ["delegate_permission/common.handle_all_urls"], "target": { "namespace": "android_app", "package_name": "com.yourcompany.yourapp", "sha256_cert_fingerprints": ["YOUR_SHA256_FINGERPRINT"] } "apps": [], "details": [{ "appIDs": ["TEAM_ID.com.yourcompany.yourapp"], "paths": ["*"], "components": [{"/": "/*"}] }] }