Some SDK Help?

This is a discussion on Some SDK Help? within the Droid Hacks forums, part of the Droid Hacking category; So I have a Galaxy Nexus and am trying to install SDK to unlock my boot loader. I'm using this method: Howto: Install the Android ...

+ Reply to Thread
Results 1 to 8 of 8

Thread: Some SDK Help?

  1. Senior Droid
    HikenGruven's Avatar
    Member #
    110681
    Join Date
    Aug 2010
    Location
    Towson, MD
    Posts
    135
    Liked
    2 times
    Phone
    Samsung Galaxy Nexus (Stock)
    #1

    Some SDK Help?

    So I have a Galaxy Nexus and am trying to install SDK to unlock my boot loader. I'm using this method: Howto: Install the Android SDK - CyanogenMod Wiki and am on step #10.

    #10 In the "Variable values" section, add at the very end the location of the tools & package-tools folder, with a semicolon separating these two paths from the rest, e.g. %SystemRoot%;C:\android-sdk-windows\platform-tools;C:\android-sdk-windows\tools.

    When I go to the variable values section on my computer, here is what I see: C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;%SystemRoot%\system32;%SystemRoot%;%SystemRoo t%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowe rShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\QuickTime\QTSystem\

    Where is this "tools & package-tools folder" that the instructions speak of?
  2. Sponsor
    DF Advertising
    Join Date
    Nov 2008
    Location
    DroidForums.net
     
     
     
     
  3. Master Droid
    chrstdvd's Avatar
    Member #
    122873
    Join Date
    Sep 2010
    Posts
    564
    Liked
    2 times
    Phone
    Droid 2
    #2
    If you installed the sdk on your drive C in a folder android-sdk-windows then just copy what is in the step 10
    ;C:\android-sdk-windows\platform-tools;C:\android-sdk-windows\tools
    and paste it to the end of the Variable Value.

    Here is what I have pasted into mine. I renamed the folder on C from android-sdk-windows to just android.
    ;C:\Program Files (x86)\QuickTime\QTSystem\;C:\android\platform-tools;C:\android\tools

    All you are really doing is setting up your computer to look for adb and other commands in these two folders when you are in the command prompt. This way you do not have to navigate to C:\android\tools to use the executable files in that folder.

    If you are unclear, open windows explorer and choose drive C: Look for a folder "android-sdk-windows" then inside that folder you will see folders named Tools and another Platform tools. Inside those folder you will see executable files with an .exe extension.
  4. Moderator
    macpro88's Avatar
    Member #
    168721
    Join Date
    Feb 2011
    Location
    Ohio
    Posts
    631
    Liked
    39 times
    Twitter
    macpro88
    Phone
    Galaxy Nexus
    Premium Member
    #3
    Here is an easy way to install the SDK for Android.
    -Download the .zip file for Windows from the Android Dev site
    -Unzip the folder to extract the root android sdk folder
    -place that folder anywhere you want, easier if you place it in a shallow directory
    -ie: place it on the root of the C:\ that way the directory is shallow when you go to run tools from CMD
    -Once you have the folder placed where you want it, open it up and run the SDK Manager application
    -It will run, select and only select the "tools," "platform-tools," and I usually check the "Google Drivers" further down as well
    -Once everything has downloaded you should be good to go
    To use the tools needed, you will need to open up Window's command prompt application, keyboard shortcut is "Windows Key+R" then type "cmd" and hit enter.

    Now you need to point cmd to the platform-tools folder:

    Code:
    cd C:\android-sdk\platform-tools\
    Hit enter, and you are now inside the platform-tools folder and you can now run adb and fastboot commands.

    By the way, you can set this up however you want, they are all standalone apps (somewhat, as long as all supporting .dll files are in the same directory).

    Mine is set up as such C:\android\platform\ and C:\android\tools\. This makes it easier to cd (change directory) to the folder I need to use. My platform folder is just the platform-tools folder renamed and the android folder is just android-sdk-whatevertherestis renamed to android.

    Enjoy
  5. Senior Droid
    HikenGruven's Avatar
    Member #
    110681
    Join Date
    Aug 2010
    Location
    Towson, MD
    Posts
    135
    Liked
    2 times
    Phone
    Samsung Galaxy Nexus (Stock)
    #4
    Arrgghh! "adb is not recognized" in the command prompt. I got the same error when trying to manually configure the drivers for Wug's Nexux Tool Kit (after repeating the process dozens of times). I give up tonight and will try to start fresh tomorrow.
  6. Nexus Rescue Squad
    bhfd64's Avatar
    Member #
    178680
    Join Date
    Mar 2011
    Posts
    234
    Liked
    6 times
    Phone
    Galaxy Nexus
    Premium Member
    #5
    I used this tutorial for setting up SDK and it worked very well.
  7. Senior Droid
    HikenGruven's Avatar
    Member #
    110681
    Join Date
    Aug 2010
    Location
    Towson, MD
    Posts
    135
    Liked
    2 times
    Phone
    Samsung Galaxy Nexus (Stock)
    #6
    Quote Originally Posted by macpro88 View Post
    Here is an easy way to install the SDK for Android.
    -Once you have the folder placed where you want it, open it up and run the SDK Manager application-It will run, select and only select the "tools," "platform-tools," and I usually check the "Google Drivers" further down as well
    So I'm seeing the following error about ADB server failing. I've seen this before. What does that mean?
    Attached Thumbnails Attached Thumbnails Some SDK Help?-capture2.jpg  
  8. Senior Droid
    HikenGruven's Avatar
    Member #
    110681
    Join Date
    Aug 2010
    Location
    Towson, MD
    Posts
    135
    Liked
    2 times
    Phone
    Samsung Galaxy Nexus (Stock)
    #7
    Quote Originally Posted by macpro88 View Post
    Here is an easy way to install the SDK for Android.
    -Download the .zip file for Windows from the Android Dev site
    -Unzip the folder to extract the root android sdk folder
    -place that folder anywhere you want, easier if you place it in a shallow directory
    -ie: place it on the root of the C:\ that way the directory is shallow when you go to run tools from CMD
    -Once you have the folder placed where you want it, open it up and run the SDK Manager application
    -It will run, select and only select the "tools," "platform-tools," and I usually check the "Google Drivers" further down as well
    -Once everything has downloaded you should be good to go
    To use the tools needed, you will need to open up Window's command prompt application, keyboard shortcut is "Windows Key+R" then type "cmd" and hit enter.

    Now you need to point cmd to the platform-tools folder:

    Code:
    cd C:\android-sdk\platform-tools\
    Hit enter, and you are now inside the platform-tools folder and you can now run adb and fastboot commands.

    By the way, you can set this up however you want, they are all standalone apps (somewhat, as long as all supporting .dll files are in the same directory).

    Mine is set up as such C:\android\platform\ and C:\android\tools\. This makes it easier to cd (change directory) to the folder I need to use. My platform folder is just the platform-tools folder renamed and the android folder is just android-sdk-whatevertherestis renamed to android.

    Enjoy
    I swear I keep doing this for different methods and am following the instructions to a "T". Then I get to the command prompt and it still says "device not recognized" blah blah. I suppose I'll try The Unlockr method posted now.
  9. Senior Droid
    HikenGruven's Avatar
    Member #
    110681
    Join Date
    Aug 2010
    Location
    Towson, MD
    Posts
    135
    Liked
    2 times
    Phone
    Samsung Galaxy Nexus (Stock)
    #8
    Quote Originally Posted by bhfd64 View Post
    I used this tutorial for setting up SDK and it worked very well.
    Sucess! I don't know what it was, but after the 15th try, something worked! I went ahead and unlocked the boot loader. Aside from a "waiting on device" issue which I was expecting and ready for, it was flawless. Thanks to All! Now if I can just get up the guts to root. That's another night.

Sponsors

Posting Permissions

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

Search tags for this page

cmd droid tools help
,
droidforums sdk help hikengruven
,

in the variable values section, add at the very end the loca

,
set up sdk rezound
,
some sdk help
,
unlockr wug fresh
Click on a term to search our site for related topics.

Tags for this Thread