adb Common Command Daquan
1. Display all Android platforms in the system:
Android list targets
2. Display all AVD (simulator) in the system:
Android List AvD
3. Create an AVD (simulator):
android Create AVD--name name --target Platform number
4. Start the emulator:
EMULATOR-AVD name -sdcard ~/ name . IMG (-skin 1280x800)
5. Delete the AVD (simulator):
Android Delete AvD--name name
6. Create SDcard:
mksdcard 1024M ~/ name . IMG
7. AVD (simulator) Location:
Linux (~/.ANDROID/AVD) Windows (C:\Documents and SETTINGS\ADMINISTRATOR\.ANDROID\AVD)
8. Start Ddms:
Ddms
9. Displays all the emulators currently running:
ADB devices
10. Execute a command on a simulator:
abd-s Simulator Number Command
11. Install the application:
adb install-r Application . apk
12. Get the files in the emulator:
adb pull <remote> <local>
13. Write the file to the emulator:
adb push <local> <remote>
14. Enter the shell mode of the simulator:
adb Shell
15. Launch the SDK, documentation, instance download Manager:
Android
16. Unloading APK Package:
adb shell
CD Data/app
RM apk Package
Exit
adb uninstall APK the package's main package name
adb install-r apk Package
17. View the ADB command Help information:
adb Help
18. View the log information on the command line:
adb logcat-s Label name
The commands behind the ADB shell come mainly from:
SOURCE \system\core\toolbox directory and source code \FRAMEWORKS\BASE\CMDS directory.
20. Remove the System application:
adb remount (re-mount the system partition so that the system partition is re-writable).
ADB shell
CD System/app
RM *.apk
21. Get Administrator Privileges:
adb root
22. Start activity:
adb shell am start-n Package Name / Package name + class name ( - N class name ,-a action,-d date,-m mime-type,-c category,-e Extended Data , , etc.).
23. Release Port:
You can set any port number as the request port for the host to the emulator or device. such as:
ADB forward tcp:5555tcp:8000
24. Copy files:
You can copy files to a device or from a device,
To copy a file or directory to a device or emulator:
adb push <source><destination></destination></source>
such as: Adbpush test.txt/tmp/test.txt
To copy a file or directory from a device or emulator:
adb pull <source> <destination></destination></source>
such as: adbpull/addroid/lib/libwebcore.so.
25, the Search simulator/device instance:
Gets a list of instances of the currently running emulator/device and the status of each instance:
ADB devices
26. Check the bug report:
ADB bugreport
27. Record the wireless communication log:
Generally speaking, the wireless communication log is very many, at run time not necessary to record, but we can still through the command, set the record:
adb shell
Logcat-b Radio
28. Get the ID and serial number of the device:
adbget-product
ADB Get-serialno
29. Accessing the database SQLite3
Adbshell
Sqlite3
#cdsystem/sd/data//Enter the specified folder within the system
#ls//list displays the contents of the current folder
#rm-R xxx//delete the folder with the name xxx and all the files inside it
#rm XXX//delete file xxx
#rmdir xxx//delete xxx folder
The ADB command encyclopedia in Android