Amar Jain
Amar Jain

Reputation: 1738

Redirect to a mobile app from a web page

How to open an android application when a particular link in mobile browser,is clicked?

Upvotes: 0

Views: 281

Answers (1)

Axel Cateland
Axel Cateland

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

Related Questions