[GUIDE] ADB for "Dummies"


Image

*Make sure that debugging mode is checked in your Android Settings, if not ADB will not work*

ADB is an acronym for Android Debug Bridge and is a development tool for the Android Mobile Operating System

To enable "Debugging Mode", Go to Settings, Applications and then select Development. Once in the Development options list check the box that says "USB Debugging".

Supported Operating Systems:
- Windows XP (32-bit), Vista (32- or 64-bit), or Windows 7 (32- or 64-bit)
- Mac OS X 10.5.8 or later (x86 only)
- Linux (tested on Ubuntu Linux, Lucid Lynx)
GNU C Library (glibc) 2.7 or later is required.
On Ubuntu Linux, version 8.04 or later is required.
64-bit distributions must be capable of running 32-bit applications.


DOWNLOAD MY NEW ADB for "DUMMIES" application! It puts everything where it needs to be automatically(Currently in Beta)
Open the app, leave the destination as C:\ and click ok/install


IF THE LINK DOES NOT WORK, MSG ME ON GTALK AND BE PATIENT! THX FOR YOUR COOPERATION!


Extracting:

- Extract android-sdk-windows.7z to the root of your hard drive or C:\
- After extraction your directory will look like this: C:\android-sdk-windows

Installing ADB/USB Drivers:

- Connect your Android Device to your PC using the provided USB Cable or just a plain ole 6-pin to 4-pin usb cable... (I prefer to use one with a ferite core)
- When the new hardware device notification pops-up on your pc point windows to the driver folder we moved to our C-drive(C:\android-sdk-windows\google-usb_driver) and install the adb driver.

IF YOU ARE HAVING ISSUES INSTALLING ADB DRIVERS, PLEASE READ MY ADB DRIVERS FOR "DUMMIES" HERE

Nook users, please go here for the correct drivers and instructions

Running ADB from the Command Prompt:

- Windows XP: Select Start or Tap the Windows Key on your Keyboard, select "Run" and type "CMD" then hit "Enter".
- Windows Vista/Win7: Select Start or Tap the Windows Key on your Keyboard, select the search box on the left and type "cmd" then hit "Enter".

Add the "ADB" directory path as a system variable in windows:

- To do this right-click on "My Computer" and select Properties. Next select the Advanced tab(Advanced Settings in Vista/7) then select Environment Variables.
- Click "New" under System Variables and add the following:
Code: Select all
Variable: adb Value: C:\android-sdk-windows\platform-tools


Call up your Command Prompt:
Time to start adb

- Open up a Command Prompt Windows(Instructions Above)
- Type the commands I have them below:
Code: Select all
C:\Users\YourName> cd C:\android-sdk-windows\platform-tools <-- Press Enter C:\android-sdk-windows\platform-tools> adb.exe <--Press Enter


TADA! You will see alot of scripting fly through the command prompt window.

From this point you can adb shell(Make sure your device is plugged-in first!)

Source :http://androidsamurai.com/forum/viewtopic.php?f=12&t=4

Comments

Popular Posts