-
I have an Android app I developed installed on my device which is not opened when the link is clicked (https://hivepass.app/). I followed the guide here for Android: https://capacitorjs.com/docs/guides/deep-links and successfully used googles asset links tool to verify https://developers.google.com/digital-asset-links/tools/generator. However the http links I specified still open in the browser not in the mobile app. Do I have to wait a while for this to start working or is it an error somewhere and I need to start troubleshooting? If so any suggestions on what the issue may be? My stackoverflow: https://stackoverflow.com/questions/65571124/ionic-capacitor-deeplinks-not-working-in-android https://hivepass.app/.well-known/assetlinks.json:
AndroidManifest.xml:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I can't believe how long I spent on this.
|
Beta Was this translation helpful? Give feedback.
I can't believe how long I spent on this.
<data android:scheme="https" android:host="hivepass.app/" />
Should be
<data android:scheme="https" android:host="hivepass.app" />