adb devices isn't working on Mountain Lion

1.7k Views Asked by At

I just upgraded to OS X 10.8 (Mountain Lion). Now adb devices doesn't list my Galaxy Nexus or my Nexus One. I can't believe it isn't working as I'm sure there must be Android devs at Google that use Google phones with Mountain Lion. Please help!

2

There are 2 best solutions below

0
On

Me and my team was also seeing similar issues with mountain lion, but the issues mainly because of ADB not working properly. As described in comments

adb kill-server
adb start-server 

is your best friend. Always worked for us. However please note that you may have to do it multiple times, meaning it hangs do it again. Infact, the automated test script that we have written goes to an extent of executing these commands, the moment it feels we are not getting response.

0
On
adb kill-server
adb start-server 

It works for me.