Reputation: 2328
What is the main activity called for mobile Chrome on Android?
Is it Activity
? Main
?
Upvotes: 5
Views: 13258
Reputation: 51
termux app on android can start chome app with:
am start --user 0 -n com.android.chrome/com.google.android.apps.chrome.Main
It is even possible to open an url:
am start --user 0 -n com.android.chrome/com.google.android.apps.chrome.Main http://www.google.com
Upvotes: 3
Reputation: 3498
I guess you want to start chrome with adb as the following:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main
Upvotes: 5