Android/Adb: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device.
Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device.
It is a client-server program that includes three components:


A client, which runs on your development machine. You can invoke a client from a shell by issuing an adb command. Other Android tools such as the ADT plugin and DDMS also create adb clients.
A server, which runs as a background process on your development machine. The server manages communication between the client and the adb daemon running on an emulator or device.
A daemon, which runs as a background process on each emulator or device instance.

You can find the adb tool in <sdk>/platform-tools/. [http://developer.android.com/sdk/index.html Where to download Android SDK]





Revision as of 22:38, 14 April 2014

Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. It is a client-server program that includes three components:

 A client, which runs on your development machine. You can invoke a client from a shell by issuing an adb command. Other Android tools such as the ADT plugin and DDMS also create adb clients.
 A server, which runs as a background process on your development machine. The server manages communication between the client and the adb daemon running on an emulator or device.
 A daemon, which runs as a background process on each emulator or device instance.

You can find the adb tool in <sdk>/platform-tools/. Where to download Android SDK






See also