
The ADB utility
Basic use
List the available devices
If you have multiple devices connected
Install an apk application
Retrieve a file or folder on your device
Send a file from your computer to your device
Start a local terminal
Learn more
Basic use
List the available devices
If you have multiple devices connected
Install an apk application
Retrieve a file or folder on your device
Send a file from your computer to your device
Start a local terminal
Learn more
The ADB utility
Basic use
Make sure you have adb installed on your computer.List the available devices
To list the available android devices (including virtual machines) you must enter the following command:adb devices
If you have multiple devices connected
If you have multiple devices connected, you can specify with which you want to interact with the parameter '-s'.adb -s serialNumber command
Install an apk application
The installation of an application using adb is simply done entering:adb install /path/to/application.apk
Retrieve a file or folder on your device
To copy a file or folder from the device to the computer, you must use the 'pull' command.adb pull /path/on/device /path/on/computer
Send a file from your computer to your device
To copy a file from your computer to your android device, use 'push'.adb push /path/on/computer /path/on/device
Start a local terminal
To launch a terminal locally on the android device, use the command 'shell'.adb shell
Learn more
To learn more, i would say:adb -help