0

I want to open an android application from my browser. I can't change anything on the app, so I can't change the AndroidManifest file unfortunately.

GuillaumeC
  • 337
  • 5
  • 16
  • refer : https://stackoverflow.com/questions/10945426/android-start-service-without-starting-application – Ali Feb 19 '18 at 12:09
  • Possible duplicate of [Make a link in the Android browser start up my app?](https://stackoverflow.com/questions/3469908/make-a-link-in-the-android-browser-start-up-my-app) – Xpleria Feb 19 '18 at 12:30

1 Answers1

2

You may create another app with needed intent filter to catch 'view' intents and redirect those calls to your target app. You may create explicit intent with target activity class name.

Andrew
  • 1,293
  • 7
  • 19