Android Question [solved] (Emulator) unable to connect to adb daemon on port: 5037

aeric

Expert
Licensed User
Longtime User
I just want to share. This is not a question because I already found the solution that works for me.

If you are using emulator and getting the following error:
unable to connect to adb daemon on port: 5037

Try:
Bash:
C:\SDK\platform-tools>adb nodaemon server

This works for me as stated in this SO page:

If this is not working, try the following under SDK\platform-tools:
B4X:
adb kill-server
adb start-server
 
Top