본문 바로가기

개발 이야기/Android

[안드로이드 개발환경] 삼성 갤럭시 GT-i7500 ADB 드라이버 설치하기

현재 가지고 있는 안드로이드 단말은 Samsung Galaxy(GT-I7500)과 모토롤라 CLIQ...

갤럭시를 기반으로 개발환경 꾸미면서 가장 먼저 부딛히는 것이 ADB 드라이버 설치네요..
모토로라처럼 친절하게 adb 드라이버를 제공하지 않다보니 수작업으로 세팅을 해 주어야 합니다.

우선 갤럭시 드라이버를 설치하려면 기본 삼성 USB Driver 를 설치하기 위해 New PC Studio (NPS)를 설치...
Download Links
(참고로 64비트 OS 쓰시는 분들은 여기로...)

이미 설치 했겠지만, 만일 Android SDK 가 없다면 이 역시 설치....
Download Links

SDK Manager에서 USB Driver package가 설치되어 있는지 확인하고, 없다면 다운로드.....

다음은 android-sdk-windows\usb_driver 에 있는 android_winusb.inf 를 엽니다...
흠 안에 HTC, Motorola, NexusOne 등의 profile이 보이네요.......
여기다가 살짝 다음 항목을 넣어 줍니다.

; Samsung
%CompositeAdbInterface%     = USB_Install, USBVID_04e8&PID_6640&MI_01

머 대충 의미는 이렇습니다.
VID (Vendor ID) : 04e8 => 삼성
PID (Product ID) : 6640 => Galaxy

저장하시고 단말을 연결하면 드라이버 찾아달라는 다이얼로그가 뜨면, 아까 수정했던 inf 로 세팅을 해줍니다...
머 대충 이렇게 겠죠...
  1. Connect your Android-powered device to your computer's USB port. Windows will detect the device and launch the Hardware Update Wizard.
  2. Select "Install from a list or specific location" and click "Next."
  3. Select "Search for the best driver in these locations"; un-check "Search removable media"; and check "Include this location in the search."
  4. Click "Browse..." and locate the folder where you copied the installation package.
  5. Click "Next" to install the driver.
자.....이렇게 하고 나서 adb devices 하면 I7500 이 잡히는게 보입니다.
물론 eclipse DDMS에서도 잘 보입니다.......



참고 : http://www.androidpub.com/25585