使用ADB打开Chrome

时间:2015-01-26 13:05:47

标签: android adb

我曾经能够像这样使用ADB启动Chrome:

adb shell am start -n com.android.chrome/com.android.chrome.Main

但现在当我尝试时,我得到:

Starting: Intent { cmp=com.android.chrome/.Main }
Error type 3
Error: Activity class {com.android.chrome/com.android.chrome.Main} does not exist.

似乎Main Class名称已更改。如果是这样,新的是什么?

2 个答案:

答案 0 :(得分:19)

这个的Adb命令

adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main

答案 1 :(得分:0)

要使用ADB打开Chrome的默认页面,您可以使用:

adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main

相反,可以直接使用以下网址来打开网址:

adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main -d "www.facebook.com"