Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I searched for similar questions on this issue but found none related to Mac OSX.

Situation:
Trying to test android apps on a Galaxy S (Details below) but Mac is not detecting the device. Tried all the things below and have wondered whether this might be a driver issue (which I've heard things about for Samsung USB debugging).

Questions:
1) Are samsung drivers required for android USB debugging?
2) And are they available for Mac OSX? 3) Any other reasons OSX might not detect device for usb debugging?

Things I tried:

  • Enabled USB Debugging @ Settings >> Applications >> Development >> USB Debugging
  • Enabled Tethering @ Settings >> Wireless and network >> Tethering >> USB Tethering
  • Set Tethered mode @ Settings >> USB connection >> Tethered mode
  • Attempt to detect devices via ./adb devices (from platform tools dir)
  • Verified that "Unknown Sources" is checked @ Settings >> Applications >> Unknown Sources
  • Verified that device is connected to Mac
  • Restarted phone
  • Restarted mac
  • Added various device / product ids to adb_usb.ini
  • Did ./android update adb (which does adb kill-server / start-server)

Using:
Samsung Galaxy S (4G) with Sprint
Mac OSX 10.6.8
Eclipse Classic 3.7.1

share|improve this question

6 Answers

up vote 4 down vote accepted

Have you tried connecting the phone using a powered USB hub? I haven't tried it yet but found this blog post that suggests it may help for Samsung Galaxy devices.

http://esausilva.com/2010/10/02/how-to-set-up-adb-android-debug-bridge-in-mac-osx/

share|improve this answer
Too bad I don't have a powered USB Hub around here. Good idea though. I ended up testing on other devices. – Eric Dec 22 '11 at 21:48
1  
I had this exact problem. The powered USB hub fixed it, and it costs all of $7. Only seems to be a problem on the newest iMacs. – Chad Schultz Jan 13 '12 at 19:27
1  
Tried everything and finally gave up and bought a powered USB hub. Worked like a charm. – Bjorninn Oct 6 '12 at 15:39

Go to

  1. Settings
  2. Wireless and Networks
  3. USB Utilities
  4. Detach the USB cable
  5. Select Connect Storage To PC
  6. Reconnect your USB cable to your phone.

Source: Galaxy S II Forums - Help, Mac won't recognize my galaxy S 2

share|improve this answer

USB driver problems happens under Windows.

For MacOS, I had nothing to do : ADB found my device.

You don't need tethering : it's for sharing an Internet connection.

USB Debugging is needed. Also make sure you authorize your Galaxy to use Unknown sources (@ Applications -> Unknown sources (it's a check box)).

share|improve this answer
Thanks Jean-Philippe! "Unknown sources" is something I haven't tried yet. Let's see if this works... – Eric Dec 22 '11 at 16:09
Just verified that Unknown Sources is already checked (Also updated the "Things I tried" Section of my question accordingly)...Thanks for the idea though. – Eric Dec 22 '11 at 16:13
Have you tried to change your USB port ? – Jean-Philippe Briend Dec 22 '11 at 16:20
Yes just tried the port as well. Nothing.. – Eric Dec 22 '11 at 16:38
2  
Does System Profiler (/Applications/Utilities/System Profiler) show the device in the USB tree? did you try a different cable ? – superfell Dec 22 '11 at 16:43
show 4 more comments

make sure that you plugin your device in the usb ports on the mac itself, not on the keyboard usb-ports.

share|improve this answer

This happens all the time with lots of phones. Two things that have worked for me are (1) type "adb kill-server" at the command line, or (2) try another cable.

share|improve this answer

What I had problems with on LinuxMint was that I was not running Eclipse as superuser (-> no hardware rights.). That should help if you get an Unknown Device in the manager. I didn't see the error that you got. Please be more precise.

EDIT: maybe this helps for OSX, too :)

share|improve this answer
You should not (need to) run Eclipse as superuser if you set up a udev rule as described in developer.android.com/guide/developing/device.html – Philipp Reichart Dec 23 '11 at 14:51
That was just a hint. I didn't mean to recommend starting Eclipse as superuser. – Martin Braun Dec 23 '11 at 16:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.