I want to see activities of an app downloaded from play store. Basically I want to know the activities of an app so that I can start that application from an android phone or adb. So far I learned that to start an application we can use,
$ sudo adb shell am start -n applicationPackageName/.activityName
eg. $ sudo adb shell am start -n com.google.android.contacts/.ContactsActivity
And is there some other way to start an application from terminal from android phone or from adb?