Im testing a firebase dynamic link with my test flutter iOS and android app. I was wondering do you have to upload the app to App Store and google play store to use dynamic link or is there a method to use the future to launch the app for test proposes. What I'm trying to achieve is to trigger a function within flutter using a URL. so if you have any information about this please let me know and if you have any suggestion that would be appreciated
can you use firebase dynamic link without App Store Id
Asked Answered
The app store ID parameter (isi
) is optional. If you omit it when you click the link it just won't do anything (or do some fallback action based on link parameters).
In the meantime just to test if your store redirection works you can use the app store-id of any App Store app. Just don't forget to change it before publishing your app.
You can find all available Firebase Dynamic Link parameters here
© 2022 - 2024 — McMap. All rights reserved.
assetlinks.json
on host side, on iOS is called UniversalLink and you need a file calledapple-app-site-association
in the same place – Kink