Reputation: 1544
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!
Upvotes: 4
Views: 1759
Reputation: 1759
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.
Upvotes: 1