-1

If my URL looks something like this https://somesite.com//#/?token=H41SB9SN

What pathPatern or path should I use in AndroidManifest, so that when user clicks such a link, my app will will open?

Wiktor Stribiżew
  • 607,720
  • 39
  • 448
  • 563
pulancheck1988
  • 2,024
  • 3
  • 28
  • 46

1 Answers1

1

It should be

          <data android:scheme="https"
          android:host="somesite.com"
          android:pathPattern="/#/?token=" />
sasikumar
  • 12,540
  • 3
  • 28
  • 48