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

Android Firebase Dynamic Link character length

Are Firebase short Dynamic Links guaranteed to be the same character length?
drod
  • 359
  • 5
  • 17
0
votes
1 answer

Firebase dynamics's link

Here is my base universal link https://k5j95.app.goo.gl/, it used to be working properly but all of the sudden it stopped working. when I click on the link on Text message it opens up the safari and shows 400.That's an error. The requested URL was…
Mark.Ben
  • 213
  • 2
  • 10
0
votes
3 answers

I want to send some id like "132d564" manually with dynamicLink how can i do that

Here is the code i tried String id = "123456"; Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra("id", id); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_SUBJECT, "Firebase Deep Link"); …
0
votes
0 answers

Firebase Dynamic Link opening on browser

I have applied firebase dynamic link and when i click on the link it opens in the browser. In the firebase console i created few dynamic links but when i build link in the app, i dont specify the url but the dynamic link domain obviously. The…
L3G3NDj
  • 35
  • 9
0
votes
1 answer

Passing parameters in firebase dynamic link not working

I am new to firebase. I was using an old version code where the parameters i put were atleast working for the url. but now when link is clicked, the browser opens and its a 400 error that requested url was not found. it works with only the dynamic…
L3G3NDj
  • 35
  • 9
0
votes
1 answer

firebase dynamic links plugin not working with campaigns

I installed the firebase-dynamic-links plugin in my Ionic3 app for tracking some events in Firebase, for example, when a user installed the app or the user open the first time. But these actions were not register in Firebase console. I followed the…
0
votes
1 answer

Firebase C++ SDK on Android Crashes with SIGSEGV fault addr 0x0 when creating dynamic link

We're using the Firebase C++ SDK for our iOS and Android game. On iOS creating dynamic links works just perfectly, but on Android we're getting crashes which we can't resolve even after countless hours of trying various things. Here's the code that…
0
votes
2 answers

Firebase Invite for Beta App (Google Play Store Beta and iOS Testlfight)

Does Firebase Invitie Dynamic Links / Referal Links work for Google Play Store Beta Apps and/or for iOS Testflight Apps? Our game app is currently in Beta and we're about to add a referal system.
0
votes
1 answer

Firebase Invites on iOS and Android - Is it possible to generate the Share Links without showing the UI?

Firebase Invites seems to come with a UI for creating referral links on iOS and Android. Since we're making a game we'd like to use our own UI (and at least optionally skip showing the standard system UI). Is it possible to programmatically just…
keyboard
  • 2,137
  • 1
  • 20
  • 32
0
votes
1 answer

Receiving a DynamicLink firebase Android

I m developing an android application in which i want to able the user to publish a post with a social network or with email using DynamicLinks Firebase(If the application is already installed in the device the post activity will be opened…
dadou
  • 1
  • 1
0
votes
1 answer

Firebase Dynamic Link doesn't send user to website

These days I'm launching a new Android app, but it's iOS version will be available in the App Store in few months. Within the app there is an option to invite friends to download the app via Firebase Invites. So I created a Dynamic Link using the…
0
votes
1 answer

Ionic3 FirebaseDynamiLinks plugin_not_installed

When calling firebaseDynamicLinks.onDynamicLink() I get the warnings console.warn: Native: tried calling FirebaseDynamicLinks.onDynamicLink, but the FirebaseDynamicLinks plugin is not installed. console.warn: Install the FirebaseDynamicLinks…
ZehnVon12
  • 4,026
  • 3
  • 19
  • 23
0
votes
1 answer

Complete FirebaseDynamicLink not tappable when shared on WhatsApp

I am generating a FirebaseDynamicLink using below code: DynamicLink baseDynamicLink = FirebaseDynamicLinks.getInstance().createDynamicLink() .setLink(BASE_URI) .setDynamicLinkDomain(DYNAMIC_LINK_DOMAIN) …
Devarshi
  • 16,440
  • 13
  • 72
  • 125
0
votes
1 answer

Firebase Dynamic Links not working - DFL parameter

I have searched SO and the web for a similar issue, and while others appear to have encountered this problem, their solutions are not working for me. DFL parameter in Firebase Dynamic Links Builder Starting with Android, I'm attempting to implement…
Kyle
  • 606
  • 5
  • 16
0
votes
1 answer

Universal Linking with Firebase and Ionic

Additional Findings (After Initial Post) I used this site https://limitless-sierra-4673.herokuapp.com/ to validate the link. Got an error about application/pkcs7-mime. Not sure how to change this with Firebase Dynamic Links Im trying to set up…