-1

How can we fire an intent from AndroidViewClient ? Can adb shell command be used to achieve it through AndroidViewClient?

Piyush Katariya
  • 655
  • 8
  • 11

1 Answers1

0

It depends on what Intent you want to fire.

If you want to start an Activity there's support for it via AdbClient.startActivity().

Otherwise, you can use AdbClient.shell() and invoke am to fire the Intent.

Diego Torres Milano
  • 65,697
  • 9
  • 111
  • 134