+ Reply to Thread
Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 31

Thread: How to install Android SDK v1.0 - Step by Step

  1. #21
    constellanation's Avatar
    constellanation is offline *sigh*... I think I'll go spend some time with the family constellanation is on a distinguished road
    Join Date
    Oct 2008
    Posts
    6,852

    Default Re: How to install Android SDK v1.0 - Step by Step


    alright yeah give me a minute.... i'll help ya out.

  2. #22
    constellanation's Avatar
    constellanation is offline *sigh*... I think I'll go spend some time with the family constellanation is on a distinguished road
    Join Date
    Oct 2008
    Posts
    6,852

    Default Re: How to install Android SDK v1.0 - Step by Step

    Getting ADB running on your Windows machine

    About: Android Debug Bridge (adb) is a versatile tool that lets you manage the state of a device or emulator.
    Some of ways you can use adb include:
    Run shell commands on a device
    Manage port forwarding on an emulator or device
    Copy files to/from an emulator or device

    from google at http://code.google.com/android/reference/adb.html

    Installation is very simple if you are running a machine on windows using a 32 bit operating system
    (if you are on a 64 bit operatiing system, we'll address that also.)

    The first you need to do is download two files.
    1. the android sdk (or android software development kit) if you already have this unzipped you can skip this step.
    it can be found here
    http://code.google.com/android/download_list.html
    this will be downloaded in zip format. You will need to unzip this.
    I recommend you unzip this in a location that is easy to find through a command line; i.e.
    C:Users\public\android_sdk_windows (I even renamed the sdk folder to just sdk to make it easier)

    2. Android USB Drivers. if you have a 64bit os, go to the bottom of this page on getting the 64 bit version.
    which can be found here
    http://code.google.com/android/intro...devicehardware
    you should see a link for android_usb_windows.zip
    You will need to unzip these files also, just remember where.

    Plug your phone into your computer, go ahead and mount your phone
    if you get a device hardware manager click install drivers later, if you don't see the device hardware manager
    continue on.
    You will need to go into the control panel, in the start menu, and find device manager. Open the device manager
    and you should see a listing of devices. Under portable devices you should see your phone. right click on the
    phone and click update drivers or install drivers. choose the option to install manually and point it towards
    the location where you unzipped the file android usb windows. click finish/install.

    If that installed correctly, you will need to open a terminal window. do this by typing

    cmd

    into the start seach bar in the start menu. this should open a terminal.
    now you will have to change the directory to the tools folder in your android sdk folder
    this is done by typing

    cd <the path to where you stored the sdk>

    for example mine is
    cd C:\Users\family\sdk\tools

    if it changes successfully
    C:\Users\family\sdk\tools> or the path you have your folder at
    you can type

    adb devices

    if it shoes something like
    list of devices attached
    HT84******* device

    you have successfully installed ADB


    IF YOU ARE ON A 64 BIT WINDOWS SYSTEM THIS IS THE WORKAROUND

    You still need to download and unzip the android sdk as mentioned above
    however you need to get a modified usb driver for windows, get it here

    http://forum.xda-developers.com/show...=64+usb+driver

    the adb driver will only run in test signing mode (you can turn this off when you don't need it. however turning it
    on does require a reboot)
    you will need to open an admin terminal, which can be done by typing cmd in the command prompt but instead of hitting
    enter, Press Ctrl+Shift+Enter. there you will need to type

    bcdedit /set testsigning on

    (also typing

    bcdedit /set testsigning off

    in an admin terminal would be how to turn this off)
    after typing bcdedit /set testsigning on
    reboot the computer and check to see if it says test mode in the corners. if it does you can install
    the usb drivers as done above in the second step.

  3. #23
    Join Date
    Feb 2009
    Posts
    6

    Default Re: How to install Android SDK v1.0 - Step by Step

    very helpful, thank you =D

  4. #24
    Join Date
    Jun 2009
    Posts
    2

    Default Re: How to install Android SDK v1.0 - Step by Step

    Not bad but, still didn't explain that one needs to run the java-sdk.exe installation.

    Also, I'm guessing that the folder system should look like this.

    where c:\ is your installation drive letter.
    C:\android\workspace\
    C:\android\eclipse\*eclipse files*
    C:\android\sdk\android-sdk-windows-1.5_xx\*android sdk files*

    Sorry to bump an old thread but it was about the closest I could find to an actual installation procedure.

  5. #25
    Join Date
    Jul 2009
    Posts
    1

    Default Re: How to install Android SDK v1.0 - Step by Step

    Great tutorial!Thanks.I m using "Eclipse SDK Version: 3.5.0 Build id: I20090611-1540", is this gonna work?Meh it was just too many downloadable exes for a nooby :S
    Last edited by TheoKondak; 07-27-2009 at 08:49 PM.

  6. #26
    Join Date
    Jan 2010
    Posts
    1

    Default Re: How to install Android SDK v1.0 - Step by Step

    I can't get the ADT to install. I followed all the steps listed and even tried the archive ADT-0.9.5.zip. I get the same error every time

    "Cannot complete the install because one or more required items could not be found.
    Software being installed: Android Development Tools 0.9.5.v200911191123-20404 (com.android.ide.eclipse.adt.feature.group 0.9.5.v200911191123-20404)
    Missing requirement: Android Development Tools 0.9.5.v200911191123-20404 (com.android.ide.eclipse.adt.feature.group 0.9.5.v200911191123-20404) requires 'org.eclipse.wst.xml.ui 0.0.0' but it could not be found"

  7. #27
    Join Date
    Dec 2009
    Posts
    12

    Default Re: How to install Android SDK v1.0 - Step by Step

    Quote Originally Posted by Jerinaw View Post
    I can't get the ADT to install. I followed all the steps listed and even tried the archive ADT-0.9.5.zip. I get the same error every time

    "Cannot complete the install because one or more required items could not be found.
    Software being installed: Android Development Tools 0.9.5.v200911191123-20404 (com.android.ide.eclipse.adt.feature.group 0.9.5.v200911191123-20404)
    Missing requirement: Android Development Tools 0.9.5.v200911191123-20404 (com.android.ide.eclipse.adt.feature.group 0.9.5.v200911191123-20404) requires 'org.eclipse.wst.xml.ui 0.0.0' but it could not be found"
    Sounds like Eclipse isn't installed properly, I'd delete it and reinstall

  8. #28
    Join Date
    Jan 2010
    Posts
    1

    Default Re: How to install Android SDK v1.0 - Step by Step

    Quote Originally Posted by 28064212 View Post
    Sounds like Eclipse isn't installed properly, I'd delete it and reinstall
    It's not installed improperly, there's just some other Eclipse plugin you need before you can install android. Solution is copied from http://groups.google.com/group/android-developers/browse_thread/thread/c1f97d875e30f903/87cb75ef455d436f?pli=1

    • Go to "Help/Install New Software..."
    • Add http://download.eclipse.org/releases/galileo/ to the update sites
      list (strange it's not installed by default on ubuntu)
    • From there, install WST (use the filter box to find the package)
    • Restart eclipse
    • Go back to "Help/Install New Software..." and install the Android ADT
    • as explained on the android website.

  9. #29
    Join Date
    Jan 2010
    Posts
    1

    Smile Re: How to install Android SDK v1.0 - Step by Step

    It is good....but can anybody tell me the steps to install android and configure eclipse without an interner connection? what are the files that i need to download?
    please help..

  10. #30
    Join Date
    Jan 2010
    Posts
    1

    Default Re: How to install Android SDK v1.0 - Step by Step


    So, it's been a year since the original posts in this thread. Are the latest versions of eclipse ok to use with the SDK? Also, should I use the eclipse for java or eclipse for EE? I'm guessing it's the eclipse for java version, but just wanted to double check. Thanks.

+ Reply to Thread
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. How to install Android SDK
    By Mr Android in forum Developers General Chat
    Replies: 41
    Last Post: 12-27-2011, 08:34 PM
  2. How to install android SDK?
    By KanedaSyndrome in forum Developers General Chat
    Replies: 5
    Last Post: 04-18-2011, 02:06 PM
  3. Install Android
    By Ujjwol in forum General Android Chat
    Replies: 12
    Last Post: 11-02-2010, 12:30 PM
  4. Enabled Flash to get Android one step ahead of everyone else...
    By endmp25 in forum New Application Ideas
    Replies: 6
    Last Post: 06-04-2009, 10:16 PM
  5. Replies: 5
    Last Post: 10-11-2008, 01:08 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts