Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Pretty sure that is well documented since day 1 on the <a href="http://developer.android.com/guide/developing/tools/adb.html" rel="nofollow">Android Debug Bridge</a></p> <blockquote> <p>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:</p> <p>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.</p> </blockquote> <p>So plain old English, ADB can be found on %ANDROID_HOME%/platform-toos/, and it's this magical command line that allows you to comunicate with your mobile device, either a physical or a Virtual device (AVD), so whenever you deploy you are passing the application through the device thanks to the ADB on a specific client port on your computer to the daemon port on the device.</p> <p><strong>Interesting things you can do with it?</strong> </p> <ul> <li>Logcat: ./adb logcat allows you to see the log trace of each proces.</li> <li>Install: ./adb install allows you to install apk to the device.</li> <li>Killing:./adb kill-sever</li> <li>Starting:./adb stat-server</li> <li>Enter SQLite3: adb -s your_device shell</li> <li>Use the monkey: adb shell monkey -v -p your.app.package 500 to generate random events</li> </ul> <p>And a lot more! Read the documentation it's beatiful and self-explanatory.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload