Danielle Buckley
Danielle Buckley

Reputation: 93

Can I control my android phone using code from a pc or tablet?

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

Answers (1)

thejh
thejh

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

Related Questions