Reputation: 1441
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
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/
Upvotes: 3