Adb on OSX Lion but cannot connect to Galaxy 10.1 tab but works fine on linux

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

I saw several similar questions, but they all seemed to be related to the device being configured incorrectly. I installed it for "Unknown Sources" and I also have "Usb Debugging". I can use adb on linux and windows machines, so my tablet will be configured correctly and the cable works correctly.

When I connect it to my macbook program, a ping responds in the tab to show that it knows about the connection, but when I start adb devices, the device does not appear.

My OSX installation is fairly new, and I have not installed any type of binding software.

Any ideas?

+6
source share
3 answers

Use adb by default not for all types of devices. Please replace the current ~ / .android / adb_usb.ini file with the one below, it will fix the problem. I had to do the same on my mac for the 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 
+10
source

check if the device is displayed under USB in System Profiler (included in OS X). If it appears there, but not in ADB, try adding the identifier of the USB phone provider to ~ / .android / adb_usb.ini

This file can be created if it does not already exist. You will need the galaxy provider identifier 10.1.

Please make sure that the last line of the file is the identifier of the provider, do not leave an empty line at the end.

0
source

Run

 android update adb 

The file ~ / .android / adb_usb.ini is automatically updated. Restart adb or restart your computer.

0
source

Source: https://habr.com/ru/post/916667/


All Articles