-
Notifications
You must be signed in to change notification settings - Fork 23
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
Conflict with uniLinks #28
Comments
It also happens with my app using In my investigation, it appears that the issue is related to returning false in the delegate |
@kaiquegazola is correct, I had to fork and change that return statement, and do this in
|
I just opened a PR for the return statement. |
The problem is with every universal link package(uni_links, go_router, ...). When the app is terminated (iOS) the links dont work. Apple docs: application(_:continue:restorationHandler:) - Tells the delegate that the data for continuing an activity is available. To make the univesal links work in iOS in your ios/AppDelegate.swif file replace:
|
Thanks for your package! I used flutter_apns and have tried to migrate to Push. It works fine, but I got one annoying issue.
I use uni_links with this code to start the app with an initial link:
It works fine when I use flutter_apns, but it stops working right after I add Push to pubspec.yaml.
Please note that it only affects the initial start, when the app was terminated.
Is there any ideas how can I fix it?
I also tried https://pub.dev/packages/app_links instead of uni_links, but still was not able to get initial url.
The text was updated successfully, but these errors were encountered: