Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adb on OSX Lion, but can't connect to galaxy 10.1 tab, but works fine in linux

I am trying to connect to a Galaxy Tab 10.1 running Android 3.2

I have seen several similar questions, but they all seemed to be related to having the device setup incorrectly. I have it set to allow "Unknown Sources" and I also have "Usb Debugging" enabled. I am able to use adb on both linux and windows machines so my tablet would seem to be correctly setup and the cable is functioning correctly.

When I plug it in to my macbook pro the tab responds with a ping to show it is aware of the connection, but when I run adb devices no device is listed.

My OSX install is fairly new and I have not installed any type of tethering software.

Any ideas?

like image 621
Finglish Avatar asked May 25 '12 12:05

Finglish


People also ask

Why does my Mac not recognize my Samsung Galaxy?

Check your USB cable and restart your devices The most common issue that can cause Mac not recognizing Android device is a faulty cable. Make sure to try different ones, even if they did not come with your phone. Another thing that is usually disregarded is to make sure you have restarted your device.

How do I access my Android device on my Mac?

Connect your phone to your computer's USB port via the charging cable. Open Mac Finder. Locate Android File Transfer on your list of drives. Double-click the Android drive icon.

How do I find ADB devices on my Mac?

To check if you have successfully installed ADB, connect your device to your PC/Mac with your USB cable, and run the adb devices command as described above. It should display your device listed in the Command Prompt/PowerShell/Terminal window. If you get a different output, we recommend starting over with the steps.


1 Answers

Be default adb is not setup for all device types. Please replace your current ~/.android/adb_usb.ini file with the one below, it will fix the issue. I had to do the same on my mac for the exact same device.

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
# Acer
0x0502
# AOC
0x2207
# Amazon Kindle
0x1949
# ASUS
0x0B05
# Dell
0x413C
# Foxconn
0x0489
# Fujitsu
0x04C5
# Fujitsu Toshiba
0x04C5
# Garmin-Asus
0x091E
# Google
0x18D1
# Hisense
0x109B
# HTC
0x0BB4
# Huawei
0x12D1
# K-Touch
0x24E3
# KT Tech
0x2116
# Kyocera
0x0482
# Lenevo
0x17EF
# LG
0x1004
# Motorola
0x22B8
# NEC
0x0409
# Nook
0x2080
# Nvidia
0x0955
# OTGV
0x2257
# Pantech
0x10A9
# Pegatron
0x1D4D
# Philips
0x0471
# PMC-Sierra
0x04DA
# Qualcomm
0x05C6
# SK Telesys
0x1F53
# Samsung
0x04E8
# Sharp
0x04DD
# Sony
0x054C
# Sony Ericsson
0x0FCE
# Teleepoch
0x2340
# Toshiba
0x0930
# ZTE
0x19D2
like image 183
HandlerExploit Avatar answered Oct 10 '22 20:10

HandlerExploit