We have an android app that is launched when the user is redirected to a custom protocol. We want to have the user redirect to the google/play store for the app if it isn't installed on their device.
For iOS we use something like this: Is it possible to register a http+domain-based URL Scheme for iPhone apps, like YouTube and Maps? ... however this doesn't work on android.
This is the basic workflow:
- user clicks link on our site
- user is redirected to
customProtocol://site.com?some=params
- if the app is installed the device knows what to do when customProtocol:// url is accessed and the app launches ... however if the app isn't installed android just gives a page not available error page; the solution above for iOS doesn't appear to work.
Any thoughts on how we can achieve this on android? Is it just not possible on android?