Questions tagged [firebase-dynamic-links]

Firebase Dynamic Links drive usage to your mobile application from sources where only a URL can be provided, such as SMS, email, and marketing promotions. These links can help the user install and launch your app to exactly the point your user expects.

About Firebase Dynamic Links

Firebase Dynamic Links is a component of the Firebase suite of tools for cross-platform application development.

  • Improve acquisition and engagement by bringing users directly to content that they were originally searching for, whether they have your app installed or not
  • Delight new users with personalized promotions and messages after install

Related tag

1355 questions
6
votes
3 answers

Remove/delete Firebase dynamic links

I have created the dynamic links using Firebase console. But there are no option to remove or delete or edit options. I want to delete dynamic links from the console. Any help appreciate.
Anant Shah
  • 3,744
  • 1
  • 35
  • 48
6
votes
1 answer

special characters not being encoded properly inside URLQueryItems

I need to create firebase deep links in my app to share them on different platforms using UIActivityViewController . In order to create theses links, Im using the following code with URLQueryItem to get the url I will share to others apps : func…
jerem
  • 1,016
  • 2
  • 12
  • 27
6
votes
2 answers

Pass multiple params via Firebase Dynamic links Android

I've used Firebase Dynamics link and it can open my app, go to play store or go to an URL. But when I pass some parameters through link, I can only get first parameter. Here's my dynamic…
maphongba008
  • 2,114
  • 4
  • 20
  • 33
6
votes
0 answers

Different dynamic links for different apps on the same firebase project/console/account

I would like to know how we can have separate dynamic links for 2 separate apps on the same Firebase account. I have 2 apps right now and when I use the dynamic link with app-site-association, I can see that the same dynamic link talks to 2…
Vis
  • 109
  • 7
6
votes
4 answers

Firebase Dynamic Linking for iOS version 9.0 and above unable to get URL using object FIRDynamicLink object. Its giving nil value

I have made the changes for firebase integration using link https://firebase.google.com/docs/dynamic-links/ios following are the handling done to handle URL and navigate the user to respective screen. for iOS version below 9.0 the appdelegate's…
6
votes
5 answers

Firebase dynamic deep link arrives nil after install

I am attempting to use Firebase to pass deep links into my app that survive install. To test this I am following the steps provided by the Firebase documentation and Firecast video here at about the 12min 40s mark. The steps are as follows: First…
5
votes
1 answer

How to test a mobile deep links from App/Play Store in a Flutter app?

I have a mobile app (developed with Flutter but not relevant for this question). The app uses Firebase Dynamic Links functionality to bring the user inside and activate some functionalities. I tried to activate the link with the app already…
Ale TheFe
  • 1,540
  • 15
  • 43
5
votes
0 answers

Firebase Dynamic Links Flutter app the short link not working for iOS

In my Flutter app I have implemented dynamic linking, I am sending the link with an id parameter and when the app receives it it navigates to the detailed screen with given id. It works all fine in Android, however on iOS long dynamic link is…
5
votes
2 answers

Flutter iOS Firebase dynamic link push named page with the link value

Currently I am working with the Dynamic links from Firebase to implement the password reset function. On Android everything is working fine and I am handling the deep link if the app get opened by it. On iOS on the other hand it's also working, but…
5
votes
1 answer

Get Firebase Dynamic Link Data from String Input url Flutter

Dynamic links work great for 98% of our users. However, there are still a group of users which have difficulty with them or do not know how to use them. I want to add a feature which would let users paste their link into the app, and then we extract…
James
  • 543
  • 5
  • 14
5
votes
0 answers

Android firebase dynamic link opens browser before launching the app

I've been using firebase dynamic links for my app and recently encountered the issue where when clicking on the link, instead of opening a choice view for what to use to open the app (where I can just choose my app) it's instead launching the…
user3917631
  • 119
  • 1
  • 9
5
votes
1 answer

How to use Flutter Firebase dynamic links with go_router

I had firebase dynamic links integrated and working fine in my app and later i changed to use go_router and now i don't know what i should do to get it working or how to handle it. The way i imagined it would be is that the FB dynamic link path will…
Fadel
  • 195
  • 1
  • 9
5
votes
0 answers

Dynamic linking with Firebase

I am trying to set up firebase dynamic links for my app/website www.example.com but I am doing something wrong. Here's what I've done Went to dynamic links in Firebase console to create a new dynamic link for the domain example.com Got this error…
5
votes
1 answer

can you use firebase dynamic link without App Store Id

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…
tessu
  • 65
  • 1
  • 5
5
votes
0 answers

Open Flutter Application Using Dynamic Links

I'm building a flutter application, and am having some trouble actually opening the app using the firebase_dynamic_links package. I basically took the example code found at https://pub.dev/packages/firebase_dynamic_links#-example-tab- in order to…