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
10
votes
1 answer

Firebase Deep-link opening play store even when the app is installed

I'm developing an android app. Upon clicking a button, a deep-link is generated and shared with friends. The problem is that upon clicking that shared deep-link, play store is getting opened even when the app is installed. I followed this…
Hammad Nasir
  • 2,889
  • 7
  • 52
  • 133
9
votes
3 answers

Is there a way to integrate an Expo app with firebase dynamic links without detaching?

Is there a way to integrate an Expo app with firebase dynamic links without detaching.
Sahil Tyagi
  • 147
  • 2
  • 5
9
votes
2 answers

Firebase Dynamic Links subdomain config

Let's say I have a domain example.com. And I created a second website through hosting and cli as sub.example.com. { "hosting": [ { "target": "app", "public": "public", "rewrites": [ { "source": "**", …
cocacrave
  • 2,453
  • 4
  • 18
  • 30
9
votes
1 answer

Dynamic links not redirecting to app store if app not installed in ios

I am using firebase dynamic links. This is working fine as app in installed on ios or android. as if app not installed on android it redirects me to play store. but in ios if app is installed it is working fine. but as i uninstall ios app then it is…
9
votes
1 answer

iOS app lacks App ID Prefix. UniversalLinks is not enabled for the app. Where to enter the App ID?

I get the Firebase Dynamic Link error iOS app lacks App ID Prefix. UniversalLinks is not enabled for the app. The weird thing is, that I have 3 ids Bundle ID (8NF32DY4EL.app.myapp.ios) Team ID (EASLU367HG) App prefix (Q6AUGEP5N5) When I go to…
zeiteisen
  • 7,078
  • 5
  • 50
  • 68
9
votes
4 answers

How to make my firebase dynamic link redirect to my website on desktop and to my instant app on mobile

I have an instant app and a Firebase dynamic link which redirects to this instant app. But when I click the dynamic link on a computer, the link leads to a non existant page of my website. According to Google doc :…
Simon
  • 318
  • 1
  • 2
  • 8
9
votes
1 answer

Firebase console create dynamic link error

I'm trying to create a dynamic link in the firebase web console but I'm getting this error: An error occurred when creating a new Dynamic Link If I inspect in the developer console I can see this error. {code: 400, message: "Request contains an…
Peter Warbo
  • 11,136
  • 14
  • 98
  • 193
9
votes
1 answer

Firebase Dynamic Links working but not showing image Android

I am using Firebase Dynamic Links in my Android app, as previously mentioned, and it is working well. The problem is that when I share it, for example in WhatsApp, the link does not show the image, while it is showing title and description. The type…
German
  • 118
  • 1
  • 6
9
votes
1 answer

What's the theory behind how Firebase Dynamic Links survive app installation?

I looked at the Firebase iOS SDK code on Github for a few minutes, but I wasn't able to full put together how Firebase Dynamic Links survive app installation. It seems it uses some type of fingerprinting. I wasn't sure if it did that using: iOS…
jacob
  • 2,762
  • 1
  • 20
  • 49
9
votes
1 answer

Issue with Firebase dynamic links

We are trying to use dynamic links for deep linking. The link is behaving normally. However, on click, it is not hitting the userActivity restorationHandler method in the app. We have followed all the steps mentioned in the document, and the output…
Kanishka
  • 1,097
  • 5
  • 20
  • 37
9
votes
3 answers

android firebase dynamic link PendingDynamicLinkData is null direct through app

Problem: Why is "Short dynamic links" created programatically wont open/launch the app directly? I want to launch app directly when user clicks the dynamic url created dynamically by android app. When clicking dynamic short link created dynamically…
9
votes
3 answers

React-native : Implementing Reward Referral (Invite and Earn)

I have to implement Invite and Earn functionality in my Android application. What I have to do is : User can share the link to anyone on social media, On receiving the link, another user can click the link to get the application installed using that…
9
votes
1 answer

What is the app code used to create the URL deep link in Firebase for Android

I am trying to use Firebase Dynamic Links in my Android app. I'm confused on one of the parameters used to build deep links. In the demo app, it calls an api to create a URI to be used as a deep link. As part of that it uses a "app code" as part of…
JustLearningAgain
  • 2,227
  • 4
  • 34
  • 50
9
votes
2 answers

Firebase Android: handle deep links

On the Firebase documentation: it says: To receive the deep link, call the getInvitation method However the deep links, surviving installations, seem to work even without implementing the code described there. So, is it really needed to call the…
Daniele B
  • 19,801
  • 29
  • 115
  • 173
9
votes
2 answers

Firebase pending dynamic links not working

According to the Firebase Dynamic Links documentation, even if app is not installed, if user opens the link on the device, app page on Appstore opened, and once app installed, application handles the link on the first launch. After some…