Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase dynamic link not opening the app iOS

I have developed & installed an iOS app locally on my device.

And have set custom scheme in the info.plist as mydlink

Set associated domains as weel: applinks:<myapp>.app.goo.gl

Created dynamic link on firebase as:

https://<myapp>.app.goo.gl/?link=http://<mysite.com>/&ibi=<app bundle id>&ius=mydlink&ifl=https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id%3D<app store id>%26mt%3D8&pt=<app store id> 

When I open or click on dynamic link, it opens app page in the "App Store" app and not opening app itself though its installed.

What am I missing here?

like image 659
kalpeshdeo Avatar asked Jun 09 '16 11:06

kalpeshdeo


People also ask

How do I enable dynamic links?

In Adobe Premiere Pro, choose File > Adobe Dynamic Link > Import After Effects Composition. Choose an After Effects project file (. aep), and then select one or more compositions. In Adobe Premiere Pro, choose an After Effects project file and select Open.

Do Firebase dynamic links work on iOS?

With Firebase Dynamic Links, you can direct users to either an IOS or Android app from a page, email, or text. If they don't have the app installed, these links can drive users to the appropriate mobile store listing.

What is Dynamic Link in iOS?

Dynamic Links are links that work the way you want, on multiple platforms, and whether or not your app is already installed. If a user opens a Dynamic Link on iOS or Android, they can be taken directly to the linked content in your native app.

How do I make a deep Link for iOS app?

First, open Xcode, go to Project settings -> capabilities. Scroll down to Associated Domains and turn it on. Once it is enabled, we shall add any URL that implements our apple-app-site-association resource, preceded by app links. Inside the Domains section, add a applinks:myApp.com.


1 Answers

sometimes we make a mistake in Associated Domains entitlements. There have to be no spaces

applinks:mydomain.page.link 
like image 171
protspace Avatar answered Oct 05 '22 23:10

protspace