What I'm trying to do is:
- Make user scan a QR code [no problem]
- By using the URL embedded into the QR code, device should launch my application if it's installed in device. (Like using url schemes)
- However, if the application is not found on device, I want to redirect user to my app's AppStore download page (that's why I cannot use standard url schemes to launch my application)
Do you know any methods to achieve that functionality by using a special URL type or just creating an HMTL page and detecting whether an app is installed via JavaScript?