Reputation: 93
I would like to control my android phone using code from a pc or tablet, is this possible at all?
I know there is EventInjector in blackberry development, something like this available with android?
Upvotes: 0
Views: 1076
Reputation: 45568
Yes. adb
is a command line tool for development and debugging. Over USB or TCP, you can open a command shell, copy files, uninstall applications and some other things like that. You can even install applications, run them and debug them.
If you just want a command shell over TCP, you can also install an SSH server.
Upvotes: 1