I need to run my Android app from a remote computer via SSH, but I'm not a command-line expert.
So I would like to know: how to run a specific action (not just open) of an app? Which implies: how to KNOW the exact syntax of possible actions of an app?
Example: I want to start an audio-recording app on my phone from my computer, AND start recording from a remote. Is it possible?
com.android.settings/.Settings$StorageSettingsActivity
. Try it yourself. Actually, what is that string after$
sign ? Is it like a sub-class in the Settings activity? – Gokul NC May 19 '16 at 16:46$StorageSettingsActivity
might be seen as a variable and "expanded" to an empty string (unless there's a variable defined by that name). – Izzy May 19 '16 at 20:44