Reputation: 1738
How to open an android application when a particular link in mobile browser,is clicked?
Upvotes: 0
Views: 281
Reputation: 125
To open your application when a link is clicked, you have to:
define a specific protocol protocol://
and use it in the URI of the href in your web page
make sure your app catches the click by adding a few lines in its manifest.
This should help: How to listen for a custom URI
Upvotes: 1