- Download Java Developers Kit (JDK) for Windows (JRE is not sufficient).
Even though Sun asks you to login, you don't need to.
- Download Eclipse Classic 3.5.1 (optional, but really useful)
- Download the Android SDK (R04)
- On my desktop, I created the
C:\android\ directory and saved the zip file there
- Unzip it, creating
C:\android\android-sdk_r04-windows\android-sdk-windows\
- run the SDK Setup.exe (this takes a ridiculous amount of time and space)
- Set Your Windows Path environment variable
- right-click on My Computer, and select Properties
- under the Advanced tab, hit the Environment Variables button
- in the dialog that comes up, under System Variables double-click on Path
- Add
;C:\Program Files (x86)\Java\jdk1.6.0_18\bin to the Path variable (or wherever the jdk was installed)
- Add
;C:\android\android-sdk_r04-windows\android-sdk-windows\tools to the Path variable
- Use Eclipse to download the Android ADT (an optional Android plugin for Eclipse)
- When the Install Details dialog appears, the Android DDMS and Android Development Tools features are listed. Click Next to read and accept the license agreement and install any dependencies, then click Finish
- Restart Eclipse
- Modify your Eclipse preferences to point to the Android SDK directory by selecting Window > Preferences
- Select Android from the left panel
- For the SDK Location in the main panel, click Browse... and locate your downloaded SDK directory (
C:\android\android-sdk_r04-windows\android-sdk-windows\)
- Click Apply, then OK
|
|