-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flutter iOS Universal link only opens the app but is not handled #162
Comments
In my case, there was another package which overrides the This was causing the uni_link package to never be able to catch the incoming urls. I have just reconfigured the other package to return |
How did you reconfigure that? I am trying to use firebase dynamic links with it. I think I have the same issue as yours. How can I solve it? |
Same here. Firebase Dynamic Links keeps blocking uni_links from receiving the uriLinkStream or initialUri. Any ideas on how to solve this? |
Why do you need both Firebase Dynamic Links and uni_links at the same time? As far as I know they have similar purposes. |
Think I got it to work. I our case we had ONE domain to handle DeepLinks (www.ourdomain.com) and another to handle FirebaseDynamic Links (app.ourdomain.com). Problem was, I added both domains under After deleting the DeepLink url from that entry, all works well: Firebase handles its links, and leaves all others to uni_links. |
If you want to send people to the App Store or Google Play when they don't have the app installed, I think that's the only way. It also has support for Analytics and other stuff. |
I'm not using a custom domain. I have |
In my case, i custom Bug:
Work fine:
|
got the same behaviour when the app is in background but it does work when the app is terminated. |
@objc class AppDelegate: FlutterAppDelegate, MessagingDelegate {
} im using this for in my "appdelegate.swift" file |
ios/Runner/Runner.entitlements
which looks like as belowuriLinkStream
andgetInitialUri
;In the end, when I get from Firebase a link for verifying email, e.g.
https://myapp.page.link/__/auth/action?mode=verifyEmail&....
I try to open this Universal link from some email app then iOS navigates me to my app, but the app does not get the link withuriLinkStream
to handle it. But if I change the mentioned link into a Custom link asmyapp://__/auth/action?mode=verifyEmail&....
my app handles the Custom link as expected.Shortly,
What could I be missing for Universal link?
The text was updated successfully, but these errors were encountered: