-
Notifications
You must be signed in to change notification settings - Fork 4k
🐛 [firebase_dynamic_links] onLink does not trigger on iOS #10340
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
Comments
Thanks for the report @ivanesi |
If I tried workaround with app_links package: import 'package:app_links/app_links.dart';
...
@override
void initState() {
final _appLinks = AppLinks();
_appLinks.allUriLinkStream.listen((uri) {
_logger.debug('_appLinks uri $uri');
});
...
App resumed, but listener not triggers. What could this mean?
|
@ivanesi |
Hey @ivanesi. We need more information to resolve this issue but there hasn't been an update in 7 weekdays. I'm marking the issue as stale and if there are no new updates in the next 7 days I will close it automatically. If you have more information that will help us get to the bottom of this, just add a comment! |
The problem was with |
Uh oh!
There was an error while loading. Please reload this page.
Bug report
I am trying to implement Firebase Dynamic links in a flutter app. When I click on the link it opens the app but
onLink
listener doesn't work.onLink
listener works perfect on Android.I'm using real iOS device. Tested both debug and release mode.
https://link.custom.domain/apple-app-site-association
passed.I reconfigured step by step according to FlutterFire:
Info.plist
is set via Xcode:-
Runner.entitlements
is set via Xcode:Firebase is correctly initialized in my app as I'm using other services.
Run
flutterfire configure
Run app:
FirebaseDynamicLinks.instance.app.options
hasapiKey
,appId
,projectId
,ios
,iosBundleId
,iosClientId
, some other props, butdeepLinkURLScheme
isnull
.Nothing happened.
Handling initial link also doesn't work. Tested on real device in release build mode.
Flutter doctor
Run
flutter doctor
and paste the output below:Click To Expand
Flutter dependencies
Run
flutter pub deps -- --style=compact
and paste the output below:Click To Expand
The text was updated successfully, but these errors were encountered: