adb
Android Debug Bridge: communicate with an Android emulator instance or connected Android devices. Some subcommands such as `shell` have their own usage documentation.
More info →Subcommands (11)
Connect to an Android device wirelessly.
List connected Android devices.
The examples for this command have been moved together with `adb connect`.
Forward socket connections to a connected Android device or emulator.
Push packages to a connected Android device or emulator.
Dump a log of system messages.
The examples for this command have been moved together with `adb connect`.
Reboot a connected Android device or emulator.
Reverse socket connections from a connected Android device or emulator.
Run shell commands on a connected Android device or emulator.
Uninstall a package.
Examples (8)
Check whether the adb server process is running and start it
Terminate the adb server process
Start a remote shell in the target emulator/device instance
Push an Android application to an emulator/device
adb install -r path/to/file.apkCopy a file/directory from the target device
adb pull path/to/device_file_or_directory path/to/local_destination_directoryCopy a file/directory to the target device
adb push path/to/local_file_or_directory path/to/device_destination_directoryList all connected devices
Specify which device to send commands to if there are multiple devices
adb -s device_ID shell