0

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

BenMorel
  • 30,280
  • 40
  • 163
  • 285
Amar Jain
  • 1,308
  • 12
  • 11

1 Answers1

1

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

Community
  • 1
  • 1
Axel Cateland
  • 105
  • 1
  • 8