We are trying to create a link that, when clicked in a browser, opens our application, if installed. This is usually done using the following:
intent://some.domain/some=parameters
If it is configured correctly, this uri can launch your application, if installed, and redirect you to the play store otherwise. However, this is not what we want. We want to redirect to the playback store using the installation referrer . As far as we know, the syntax of intent: // cannot do this.
Another decision we came up with was to make
market:
can open with our application. The problem with this method is that it will not automatically launch the application, but will ask the user if they want to open a link with our application or in the Play Store.
Any workaround for this? Even a small suggestion would be appreciated.
source share