While ADB can do lots of thing to perform some changes or actions in the android device. Is there some way to send custom command that every app can tailor based on their needs?
One example would be: adb CUSTOM_COMMAND [PARAM]
. If the available commands in ADB are not easy to edit, then something like adb run -CUSTOM_COMMAND [PARAM]
.
Then the app would be able to listen to that command and parse what are the instruction it needs to do.
Is this possible using ADB or any other tools?