Advertisement
Guest User

Untitled

a guest
Mar 6th, 2014
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. http://dl.google.com/android/installer_r15-windows.exe
  2.  
  3. a) Need to install the JDK, if you don't have it already.(http://java.sun.com/javase/downloads/index.jsp)
  4.  
  5. b) If you will be developing in Eclipse with the Android Development Tools (ADT) Plugin(http://www.eclipse.org/downloads/)
  6.  
  7. The "Eclipse Classic" version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended.
  8.  
  9. a) If you downloaded a .zip or .tgz package (instead of the SDK installer), unpack it to a safe location on your machine.
  10. By default, the SDK files are unpacked into a directory named android-sdk-<machine-platform>.
  11.  
  12. b) If you downloaded the Windows installer (.exe file), run it now and it will check whether the proper Java SE Development
  13. Kit(JDK) is installed (installing it, if necessary), then install the SDK Tools into a default location (which you can modify).
  14.  
  15. c) Make a note of the name and location of the SDK directory on your system—you will need to refer to the SDK directory later,
  16. when setting up the ADT plugin and when using the SDK tools from the command line.
  17.  
  18. a) Follow these steps to download the ADT plugin and install it in your Eclipse environment.
  19.  
  20. i) Start Eclipse, then select Help > Install New Software....
  21.  
  22. ii) Click Add, in the top-right corner.
  23.  
  24. iii) In the Add Repository dialog that appears, enter "ADT Plugin" for the Name and the following URL for the Location:
  25. https://dl-ssl.google.com/android/eclipse/
  26. (If you have trouble acquiring the plugin, try using "http" in the Location URL, instead of "https" (https is preferred for security reasons).
  27.  
  28. iv) In the Available Software dialog, select the checkbox next to Developer Tools and click Next.
  29.  
  30. v) In the next window, you'll see a list of the tools to be downloaded. Click Next.
  31.  
  32. vi) Read and accept the license agreements, then click Finish.
  33.  
  34. b) Configuring the ADT Plugin - the next step is to modify your ADT preferences in Eclipse to point to the Android SDK directory:
  35.  
  36. i) Select Window > Preferences... to open the Preferences panel (Mac OS X: Eclipse > Preferences).
  37.  
  38. ii) Select Android from the left panel.
  39.  
  40. iii) For the SDK Location in the main panel, click Browse... and locate your downloaded SDK directory. Click Apply, then OK.
  41.  
  42. a) You can launch the Android SDK and AVD Manager in one of the following ways:
  43.  
  44. i) From within Eclipse, select Window > Android SDK and AVD Manager.
  45.  
  46. ii) On Windows, double-click the SDK Manager.exe file at the root of the Android SDK directory.
  47.  
  48. iii) On Mac or Linux, open a terminal and navigate to the tools/ directory in the Android SDK, then execute: android
  49.  
  50. b) To download components, use the graphical UI of the Android SDK and AVD Manager to browse the SDK repository and select new or
  51. updated components, The Android SDK and AVD Manager installs the selected components in your SDK environment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement