tags:

views:

37

answers:

1

How can I startup a browser with the adb shell and display a certain web page?

+2  A: 

Running this command will start a web browser in android:

./adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com
Joakim Lundborg
Thanks Joakim for answer.
Shrikant Tudavekar