Lana
Lana

Reputation: 3

Objective C - cannot open my app by Firebase Dynamic Link

I'm new to iOS development. Today I try to embed the firebase Dynamic Link in my App to generate links to share. I try to implement it as the tutorial video, but after I set the Associated Domains in Capabilities and URL type in Info. I cannot open the app by tap URL like the demo in the video. The setting is like this: enter image description here

enter image description here

and when I open https://q326v.app.goo.gl/apple-app-site-association, the result also looks fine. enter image description here enter image description here

Anyone have the idea what the problem is? Thanks very much!

Upvotes: 0

Views: 654

Answers (1)

Oleksiy Ivanov
Oleksiy Ivanov

Reputation: 2514

That's typo in Firebase doc, App Store ID not essential for dynamic links to works. App Prefix ID is essential and you seems to have done this.

Looking on your apple-app-site-association and your Xcode screenshot, you are all set. The problem you facing now is related to iOS Universal Links. Try long tap on your link while App is installed, you should see option "Open in ". Ensure you uninstalled and then re-installed the App, ensure you did not disabled Universal Links for your App, check StackOverflow for common issues related to Universal Links.

Upvotes: 1

Related Questions