question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Question] dynamic link did not open app store when app is not installed

See original GitHub issue

[REQUIRED] Please fill in the following fields:

  • Unity editor version: 2020.3.29f1
  • Firebase Unity SDK version: 8.8.0
  • Source you installed the SDK: .unitypackage (.unitypackage or Unity Package Manager)
  • Problematic Firebase Component: Dynamic Links
  • Other Firebase Components in use: Auth, Database
  • Additional SDKs you are using: Facebook
  • Platform you are using the Unity editor on: Mac
  • Platform you are targeting: iOS (iOS, Android, and/or desktop)
  • Scripting Runtime: IL2CPP (Mono, and/or IL2CPP)

[REQUIRED] Please describe the question here:

I want to generate short dynamic links inside the app for every user. I managed to do it for android users but in iOS the short links launch website instead of app store page.

Heres my code

// CREATES LONG DYNAMIC LINK var components = new Firebase.DynamicLinks.DynamicLinkComponents( // The base Link. new System.Uri("https://example.com/?"), // The dynamic link URI prefix. "https://example.page.link") { IOSParameters = new Firebase.DynamicLinks.IOSParameters("com.Example.Example"), AndroidParameters = new Firebase.DynamicLinks.AndroidParameters("com.Example.ExampleApp"), }; var options = new Firebase.DynamicLinks.DynamicLinkOptions { PathLength = DynamicLinkPathLength.Short, };

I found this post but couldn’t figure out how to add isi parameter to my uri

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:9

github_iconTop GitHub Comments

1reaction
SonmezYigithancommented, Apr 25, 2022

Hey I solved the issue

Heres how I solved:

  1. I had 3 duplicates at OAuth 2.0 Client IDs for iOS created by google. Deleted the duplicates.
  2. I had an error at debug view saying there’s no app bundle ID. I added app bundle ID as a new parameter in the dynamic link
  3. I added Associated Domains in Xcode.
0reactions
google-oss-botcommented, Apr 21, 2022

Hey @SonmezYigithan. We need more information to resolve this issue but there hasn’t been an update in 5 weekdays. I’m marking the issue as stale and if there are no new updates in the next 5 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!

Read more comments on GitHub >

github_iconTop Results From Across the Web

dynamic link firebase did not open app store when ...
i implemented firebase method of ios dynamic link. it works fine when app installed, it open app. but when app uninstalled, dynamic link...
Read more >
[firebase_dynamic_link] New iOS install doesn't open with ...
On clicking the link, the app store page opens as required, but after the user downloads the app, the dynamic link within the...
Read more >
Dynamic Links pass through from Appstore to iOS App
On first open, the Dynamic Links library pulls in the dynamic link via the iOS pasteboard (saved there by the preview page). It...
Read more >
Firebase Dynamic link doesn't work correctly on iOS 12
Hi everyone, I'm facing a really strange issue with firebase dynamic links. First, I have to say that I have updated the firebase...
Read more >
iOS : Firebase dynamic link always goes to app ... - YouTube
iOS : Firebase dynamic link always goes to app store URL even if the app is installed ... Question / answer owners are...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found