Adb.exe hanging on windows 7

I recently installed the Android SDK with ADT from developer.android.com and it worked great, and I created the hello world app and installed it on my phone using ADT. but after some time, when I start the project, it continues to display the ddmd post-create init message and then nothing happens. I waited a lot, but it hangs on this post I tried all the methods given as

  • delete .lock file
  • complete the process through the task manager
  • delete .android folder
  • delete .metadata / .project folder
  • run adb kill-server and adb devices, but it freezes while waiting for the device
  • set the path in environment variables
  • other IDEs installed like netbeans and intelliJ
  • remote Android SDK and installed elsewhere
  • restartable system
  • placement of platform tool files in the tool folder
  • updated IDE and SDK manager

None of the above methods worked for me whenever I start the project, the message ddms post-create init appears, and then nothing happens for several hours!

please, please give me a solution. I'm tired of doing the above method I have windows 7 32bit JDK 1.7 JRE 7 latest Android SDK and Eclipse ADT

thank

+3
source share
1 answer

I work in a node module in a Windows 7 dev environment, I create and delete a Cordova project, and every time a project is created or emulated, it is not possible to delete the root folder, I found that the adb.exe process blocked the folder, so the solution was quite simple. just kill the process.

, Android SDK Android, .

. , , , .

, , , cmd, :

TASKKILL /F /IM ADB.exe /T

, , .

+2

All Articles