user426132
user426132

Reputation: 1441

iOS app opened from web app with url redirects to Appstore

I have an iOS app that can be opened using custom URL scheme. When open with the url the app starts receives the data and immediately the Appstore opens on the apps page like it's not installed.

What could be the cause of this?

Upvotes: 5

Views: 1874

Answers (1)

Dror Davidi
Dror Davidi

Reputation: 351

It will be helpful if you can add some details on iOS version and browser, as both may be responsible to the behaviour you are describing.

In general the behaviour above seems to resemble issues which occur when you are trying to fire a URI Scheme in iOS 9+ using the Safari browser.

I recommend implementing Universal Links which will resolve this permanently.

Some references:
https://www.appsflyer.com/resources/everything-marketer-needs-to-know-deep-linking/universal-links/

https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/enabling_universal_links

Upvotes: 3

Related Questions