Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADB + Samsung Galaxy

Tags:

android

Has anyone been successful with hooking up a Samsung Galaxy with ADB running on Win XP Pro SP3? Links to already existing threads or tutorials related to this would be much appreciated! Thanks!

like image 278
mobilekid Avatar asked Dec 04 '09 17:12

mobilekid


People also ask

What is Samsung adb?

Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device. The adb command facilitates a variety of device actions, such as installing and debugging apps, and it provides access to a Unix shell that you can use to run a variety of commands on a device.

How do I reinstall adb drivers?

Open the System Properties dialog (press Win+Break on the keyboard or locate "Computer" in Start Menu, right-click on it and select "Properties". Click on the "Device Manager" link. In the Device Manager locate your Android device. Then right-click on it and select "Update Driver Software".


2 Answers

  1. Install Samsung New PC Studio that comes with the CD. It includes Windows drivers

  2. Make sure that in your phone settings:
    "Settings > Applications > Development > USB Debugging" is checked
    "Settings > About phone > Additional Settings > Mass store" is NOT checked

  3. In android-sdk-windows\usb_driver\android_winusb.inf add the following lines under [Google.NTx86] if you're using a 32-bit operating system. Otherwise add them under [Google.NTamd64] if you have a 64-bit operating system:
    ; Samsung galaxy
    %CompositeAdbInterface% = USB_Install, USB\VID_04E8&PID_6640&MI_00
    %SingleBootLoaderInterface% = USB_Install, USB\VID_04E8&PID_6640&MI_04
  4. Connect your phone, in device manager you should see an Unknown device. Right click and say update driver, select android-sdk-windows/usb_driver directory. Android Bootloader Interface will be installed.

  5. If your device isn't listed when you say adb devices in command prompt, type adb kill-server

like image 87
Sarp Centel Avatar answered Nov 15 '22 19:11

Sarp Centel


(For the following steps, I assume that you are using Google Android SDK 1.5 R3 or above)

In order to get your Windows XP recognize the Samsung Galaxy Android phone so you can develop on device , you have to do the following:

refer to http://developer.android.com/guide/developing/device.html

Add the following to your android-sdk-windows\usb_driver\android_winusb.inf:

under [Google.NTx86] add:

; Samsung galaxy
%CompositeAdbInterface%     = USB_Install, USB\VID_04E8&PID_6640&MI_00 
%SingleBootLoaderInterface% = USB_Install, USB\VID_04E8&PID_6640&MI_04

under [Google.NTamd64] add:

; Samsung galaxy
%CompositeAdbInterface%     = USB_Install, USB\VID_04E8&PID_6640&MI_00 
%SingleBootLoaderInterface% = USB_Install, USB\VID_04E8&PID_6640&MI_04
like image 26
Eli Ben-Ami Avatar answered Nov 15 '22 21:11

Eli Ben-Ami