0

i want to start an application on the phone through adb tools. I follow this thread [Link]

[1]: How to start an application using android ADB tools? but, for example if i want to start the Angry Bird game how do i can discover the MAIN activity of package?

Thanks a lot.

Community
  • 1
  • 1
Antonio
  • 1,181
  • 4
  • 15
  • 34

2 Answers2

3

If you install the app AppXplore from Google Play, you can inspect your installed applications and learn the package name and the Activities in the APK.

I've verified it just now and it worked by starting Adobe Reader from adb shell:

am start -n com.adobe.reader/com.adobe.reader.AdobeReader
kaderud
  • 5,457
  • 2
  • 36
  • 49
0

We can start any application using am-:activity manager

    adb shell am start android.intent.action.VIEW
    adb shell am start com.android.Browser
Abhinav Singh Maurya
  • 3,313
  • 8
  • 33
  • 51
Sanyal
  • 864
  • 10
  • 22