Given an .apk, is there a way to figure out how you could launch the application from within a terminal emulator in an android device?
E.g. for com.wondershare.player-1.apk
I have read that you probably want to run something like ...
am start -n com.wondershare.player/com.wondershare.player.<name of the activity or something?>
And I've also seen ...
am start -a android.intent.action.MAIN -n com.wondershare.player/<name of class?>
Is there some where in the manifest or somewhere where I could look for hints to fill in the < blanks > in the above.