Turning on adb to restart means to start debugging Android programs; adb's full name is Android Debug Bridge, which plays the role of a debugging bridge; through adb, you can conveniently debug Android programs through DDMS in Eclipse, which is the debug tool.
#The operating environment of this tutorial: Windows 10 system, Dell G3 computer.
What does it mean to enable adb restart?
Enable debugging of Android programs.
The full name of adb is Android Debug Bridge, which plays the role of debugging bridge. Through adb, you can conveniently debug Android programs through DDMS in Eclipse, which is the debug tool.
The working method of adb is quite special. It uses the method of listening to Socket TCP 5554 and other ports to allow IDE and Qemu to communicate. By default, adb will daemon related network ports, so when running Eclipse, the adb process will run automatically. .
adb is a tool in android sdk. You can use this tool to directly operate and manage android emulators or real android devices (such as G1 mobile phones). Its main functions are:
Run the device’s shell (command line)
Manage the port mapping of the emulator or device
Upload between computer and device /Download file
Install the local apk software to the emulator or android device
ADB is a client-server program, where the client The client is the computer you use to operate, and the server is the Android device.
For more related knowledge, please visit the FAQ column!
The above is the detailed content of What does it mean to enable adb restart?. For more information, please follow other related articles on the PHP Chinese website!