Need Adb Command Line To Start A Youtube Video Using Browser
I have an Adb shell command adb shell am start -a android.intent.action.VIEW -d 'https://youtu.be/CSULRDoF8-g' That does work. But when it calls the URL (a youtube video link) the
Solution 1:
You can launch Chrome with that url as parameter using:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main "https://youtu.be/CSULRDoF8-g"
Post a Comment for "Need Adb Command Line To Start A Youtube Video Using Browser"