I'm currently working on an android instant app. I used firebase hosting, to verify the app links.
This works fine for https links: https://xyz.firebaseapp.com/.well-known/assetlinks.json
.
But when I want to release the instant app, google forces me to support http routing aswell: https://xyz.firebaseapp.com/.well-known/assetlinks.json
.
The Problem with http is, that firebase hosting automatically reroutes http requests to https and app linking doesn't support rerouting for the assetlinks url.
Is there a possibility to disable https rerouting and to get this working with firebase hosting ? Do you know any alternatives to firebase hosting ?