Using the adb tools with Android. This tutorial describes how to use the adb tool to access your Android device or Android virtual device (AVD).

1. Starting an Android virtual device via the command line

It can be useful to start an emulator directly from the command line.

To start a virtual device from the command line:

emulator -avd avd_name

Current Android Studio has a bug.

Workaround is to start the emulator from the $ANDROID_HOME/tools/emulator directory or to define an alias. See https://stackoverflow.com/questions/42554337/cannot-launch-avd-in-emulatorqt-library-not-found

alias emu="$ANDROID_HOME/tools/emulator"

For a list of AVD names, enter the following command:

emulator -list-avds

2. Using adb

2.1. Starting an activity via the command line

You may have to start adb with root mode before you can use it.

adb root

2.2. Copy files from and to your device

You can copy a file from and to your device via the following commands.

adb shell am start -n yourpackagename/.activityname

2.3. Copy files from and to your device

You can copy a file from and to your device via the following commands.

// assume the gesture file exists on your Android device
adb pull /sdcard/gestures ~/test
// now copy it back
adb push ~/test/gesture /sdcard/gestures2

3. Uninstall an application via adb

You can uninstall an android application via the shell. Switch the data/app directory (cd /data/app) and simply delete your android application.

You can also uninstall an app via adb with the package name.

adb uninstall <packagename>

4. Telnet to your Android device

Alternatively to adb you can also use telnet to connect to the device. This allows you to simulate certain things, e.g. incoming call, change the network connectivity, set your current geocodes, etc. Use "telnet localhost 5554" to connect to your simulated device. To exit the console session, use the quit or exit command.

For example to change the power settings of your phone, to receive an sms and to get an incoming call make the following.

# connects to device
telnet localhost 5554
# set the power level
power status full
power status charging
# make a call to the device
gsm call 012041293123
# send a sms to the device
sms send 12345 Will be home soon
# set the geo location
geo fix 48 51

For more information on the emulator console please see Emulator Console manual.

5. Getting system information with command line tool dumpsys

5.1. adb dumpsys

The adb dumpsys command allows you to retain information about the Android system and the running applications.

To get currently memory consumption of an application you can use the following command.

adb shell dumpsys meminfo <package.name>

5.2. Memory consumption overview with dumpsys

The adb shell procrank lists you all application in the order of their memory consumption. This command does not work on real device. Use the adb shell dumpsys meminfo instead.

5.3. Information about scheduled tasks

To find which alarms are scheduled for your application, use the adb shell dumpsys alarm command and look for your package name. The output might be similar to the following:

  RTC #6: Alarm{434a1234 type 1 com.example}
    type=1 whenElapsed=608198149 when=+12m13s122ms window=-1 repeatInterval=0 count=0
    operation=PendingIntent{430cf612: PendingIntentRecord{*43bbf887* com.vogella startService}}

This shows the info that the alarm is scheduled for approx. 12 minutes.

To find out the information about the pending intent, run the adb shell dumpsys activity intents command and look for the ID of the PendingIntentRecord (in this example 43bbf887):

  * PendingIntentRecord{43bbf887 com.vogella startService}
    uid=10042 packageName=com.vogella type=startService flags=0x0
    requestIntent=act=MY_ACTION cmp=com.vogella/.MyService (has extras)

5.4. Battery information tasks

As of Android 5.0 you can also get information about the battery consumption of an application.

adb shell dumpsys batterystats --charged <package-name>

6. Android adb resources