1. Set the android phone to USB debugging mode. Step: menu ---> Settings ---> application ---> development, select USB debugging]
2. Use USB to connect your phone and computer, and make sure the connection is successful. Step: Run c:/adb devices in windows to check whether the phone is successfully connected.
PS: if you are using the ztezte mobile phone China Telecom edition, install the Telecom broadband application first. (If it is the first time you connect to your computer, the system will prompt you to install the program. You can do it as prompted .)
3. Set the application to debug mode. Operation: Edit AndroidManifest. xml to add the debugging parameter android: debuggable = "true", as shown below:
<Application android: icon = "@ drawable/icon" android: label = "@ string/app_name" android: debuggable = "true">
4. Execute the real machine debugging operation: In ECLIPSE, click the debug button to automatically select the real machine device and start debugging.
Http://blog.csdn.net/fangxiao_jun/article/details/5966656 ()