Android App Links Setup
Last updated: 2026-02-05
This guide configures Android App Links for your Traput project subdomain.
1) Configure the project in Traput
In the dashboard:
- Open your project
- Go to App Links
- Fill in:
- Package name (e.g.
com.example.app) - SHA256 cert fingerprint (from Play Console/App Signing)
- Package name (e.g.
- Save
Your assetlinks URL will be:
https://<subdomain>.traput.link/.well-known/assetlinks.json
2) Configure intent filters
In your Android app manifest, add an intent-filter for HTTPS App Links (domain = your Traput subdomain).
3) Verify
Test opening a link from ADB:
adb shell am start -a android.intent.action.VIEW -d "https://<subdomain>.traput.link/r/your-slug"
Next: /docs/testing.