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
5
votes
0 answers

How to test Firebase Dynamic Links

I want to test Firebase Dynamic Links. The first scenario is easy. I can send proper intent using adb: adb shell am start -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d "https://myapp.app.goo.gl/shortlink" I just wonder how…
radzio
  • 2,862
  • 4
  • 26
  • 35
5
votes
2 answers

Redirecting to a firebase dynamic link doesn't open up IOS App

When I try to redirect user click on a website URL (firebase hosting) to a Firebase dynamic link (implemented in firebase cloud function that links to firebase hosted url) it doesn't open up the IOS App. However, click on the Firebase dynamic link…
everestman
  • 143
  • 1
  • 9
5
votes
2 answers

How do I track the performance of dynamic links created with the REST API (programmatically) in the Firebase console?

I'm using jQuery ajax request to make dynamic links but it doesn't show up in firebase dynamic links analytic console to keep track of its events. as per firebase documentation (https://firebase.google.com/docs/dynamic-links/create-links), it…
de.sk
  • 79
  • 1
  • 7
5
votes
1 answer

firebase (deferred) dynamic links matching accuracy

I am looking into using firebase dynamic links in my application. I have a need for passing a unique identifier into a users application from an email-generated link. This works fine when the user has the app installed, however, I am running into…
5
votes
1 answer

App icon missing after implementing Firebase Dynamic Links

After implementing Firebase Dynamic Links, my app icon is missing.
Alan
  • 1,510
  • 1
  • 18
  • 35
5
votes
0 answers

Firebase dynamic links invalid

I have used my bundle identifier as the url scheme, lets say that it is "foo.bar". I am debugging my app in the emulator and safari by typing in "foo.bar://" and it opens my app. However, the link that firebase is using looks something…
Heinrisch
  • 5,835
  • 4
  • 33
  • 43
4
votes
1 answer

Alternatives to Firebase Dynamic Links for Deep Linking

I've been using Firebase Dynamic Links for deep linking in React JS, Next, Node project. However, I recently discovered that the Firebase Dynamic Links server is going to be shut down. As a result, I am in search of alternatives that can provide…
Sed
  • 41
  • 3
4
votes
2 answers

firebase dynamic link causes ActivityNotFoundException on targetSdk 33

Has anyone faced this issue? When I build the app on targetSdk 33, app wont open dynamic link which crashes on ActivityNotFoundException on my pixel 6 android 13. Build setup causing crash: compileSdk = 33 targetSdk = 33 minSdk = 23 buildTools =…
4
votes
5 answers

firebase_dynamic_links in Flutter does not work on Android version 13

I am using firebase_dynamic_links 5.0.11 and Flutter 3.3.9. I did implement the dynamic link by firebase and it is working as it is expected on Android version 12 or less. The problem is just on Android version 13 that the link can not open the…
4
votes
2 answers

Firebase Console Dynamic Link OFL Parameter

I need a dynamic link (short url) that: on mobile: when app is installed -> open app when app is not installed -> open store on desktop: open specific web url I managed to get it working for the mobile part. However, on desktop it also opens the…
Jan
  • 59
  • 8
4
votes
1 answer

DynamicLinksClient is not available error while implementing firebase dynamic links in flutter

W/GoogleApiManager( 1448): The service for com.google.firebase.dynamiclinks.internal.DynamicLinksClient is not available: ConnectionResult{statusCode=SERVICE_INVALID, resolution=null, message=null} E/flutter ( 1448):…
4
votes
1 answer

Dynamic Links Firebase on App Install SwiftUI

I can't get firebase dynamic links to work on new app installs for a SwiftUI app. Their documentation on step 6 and 7 shows stuff for AppDelegate https://firebase.google.com/docs/dynamic-links/ios/receive?authuser=0 Try 1 I moved it to scene…
tintin
  • 107
  • 2
  • 6
4
votes
1 answer

403/405 status code Firebase Dynamic Link

I'm using Firebase Dynamic Link to redirect the users into our app and using the Google-provided domains (https://example.page.link) for the URL prefix. The link works fine for most people but sometimes some users might encountered with these…
akifarhan
  • 1,101
  • 10
  • 26
4
votes
0 answers

Unit Test Firebase Dynamic Link onLink behaviour for Flutter

I use firebase dynamic link in my flutter app. The handler for the onLink behaviour looks like the following: Future _initDynamicLinking({ required Emitter emit, }) async { FirebaseDynamicLinks.instance.onLink( …
4
votes
1 answer

Specified custom URL scheme is (null) but Info.plist do not contain such scheme in CFBundleURLTypes key

I have implemented firebase dynamic link in Xcode and getting below diagnostic message from Firebase: --- Firebase Dynamic Links diagnostic output start ---- Firebase Dynamic Links framework version 2.3.2 System information: OS iOS, OS version…