doc: removed AndroidManifest.xml directions since this already handled in the build. We should possibly have it somewhere else for understanding configuration since its not something auto-generated by Capacitor.

This commit is contained in:
Matthew Raymer
2025-07-23 05:32:20 +00:00
parent 986027563e
commit 442582685e

View File

@@ -1239,22 +1239,6 @@ VITE_APP_SERVER=https://timesafari.app
VITE_PASSKEYS_ENABLED=true VITE_PASSKEYS_ENABLED=true
``` ```
## Android Configuration for deep links
You must add the following intent filter to the `android/app/src/main/AndroidManifest.xml` file:
```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="https" android:host="timesafari.app" />
<data android:scheme="http" android:host="timesafari.app" />
</intent-filter>
```
... though when we tried that most recently it failed to 'build' the APK with: http(s) scheme and host attribute are missing, but are required for Android App Links [AppLinkUrlError]
## Troubleshooting ## Troubleshooting
### Common Issues ### Common Issues