The official website has a detailed introduction:
Http://developer.android.com/tools/help/adb.html
ADB, short for Android debug bridge, is a tool in the android SDK. It can be used to directly manage Android simulators or real Android devices (such as G1 mobile phones ).
Main functions:
* Run the shell (command line) of the device)
* Manage port ing between simulators and devices
* Upload/download files between computers and devices
* Install the local APK software on the simulator or Android device.
ADB is a client-serverProgramThe client is the computer you use to operate, and the server is an Android device.
First, let's talk about the installation method. The client needs to be installed on the computer. The client is included in the SDK. The device does not need to be installed,
You only need to enable the settings-applications-Development-usbdebugging option on your phone.
If you have an Android device, connect to ADB and follow the prompts. But if not ,?
Add an ADB package address to the path of the environment variable.
Several commands commonly used by ADB
1. View Devices
* ADB Devices
This command is used to view the currently connected devices. The Android devices or simulators connected to the computer are listed and displayed.
2. Install software
* ADB install <APK file path>
This command installs the specified APK file on the device.
3. uninstall software
* ADB uninstall <software Name>
* ADB uninstall-k <software Name>
If the-k parameter is added, the software is uninstalled but the configuration and cache files are retained.
4. log on to the device Shell
* ADB Shell
* ADB shell <command>
This command will log on to the shell of the device.
The <command> command is used to directly run the device command, which is equivalent to executing the remote command.
5. Send files to the device from the computer
* ADB push <local path> <remote path>
Use the push command to copy files or folders on the local computer to the device (mobile phone)
6. download files from your device to your computer
* ADB pull <remote path> <local path>
Run the pull command to copy files or folders on the device (mobile phone) to the local computer.
7. display help information
* ADB help
This command displays help information
Delete the built-in Android Rom Software
The Android system does not have the function to uninstall the built-in software of Rom. Some users may want to delete YouTube, Which is useless and wants to delete Twitter on the other side of the wall.
In addition, the android shortcut cannot be modified, and the sorting cannot be performed on its own.
Too many programs will find it difficult to find what you want.
To sum up, I think it is necessary to tell cainiao personnel how to delete their own programs.
1. confirm that the mobile phone is root. You have obtained the root permission to delete the system file.
2.download android_db.rar and decompress it to % WINDIR/% system32.
3. Connect the data cable to your mobile phone, open cmd on your computer, and enter the command
Thanks:
Http://android.tgbus.com/lab/break/201007/315923.shtml