0

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

BenMorel
  • 34,448
  • 50
  • 182
  • 322
Amar Jain
  • 1,698
  • 1
  • 14
  • 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
  • 125
  • 1
  • 8