Jon Striker
Jon Striker

Reputation: 287

universal Link not redirecting to my ios app

I'm working on universal link first time i have set all needed things but URL not opening my Mobile app. My server side file is with specific folder and with out folder enter image description here

enter image description here

My Xcode settings is enter image description here

My App entitlement file Target membership also selected enter image description here

Link which i want to open enter image description here

My Appstore BundleID, prefix and configuration enter image description here

My app url on server is https://beta-dev.callingdr.com:92/patient

Every thing is good but URL is open web app in safari not opening internal mobile app i don't no what is wrong. Help me out. I know its duplicate question but not any answer is helping me out.

Thanks

Upvotes: 1

Views: 2065

Answers (1)

SPatel
SPatel

Reputation: 4946

I think your hosting url is not proper.

According to apple documentation:

After you create the apple-app-site-association file, upload it to the root of your HTTPS web server or to the .well-known subdirectory. The file needs to be accessible via HTTPS—without any redirects—at https://<domain>/apple-app-site-association or https://<domain>/.well-known/apple-app-site-association. Next, you need to handle universal links in your app.

https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html

My suggestion:

https://beta-dev.callingdr.com:92/.well-known/apple-app-site-association

or

https://beta-dev.callingdr.com:92/apple-app-site-association

Upvotes: 1

Related Questions