Browse Source

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.

pull/142/head
Matthew Raymer 3 days ago
parent
commit
442582685e
  1. 16
      BUILDING.md

16
BUILDING.md

@ -1239,22 +1239,6 @@ VITE_APP_SERVER=https://timesafari.app
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
### Common Issues

Loading…
Cancel
Save