Installed the Andorid SDK on Windows as per guide at http://developer.android.com, all pretty straight forward. Decided to also use the Eclipse IDE for developing apps since it seems to be the recommended way of doing this (haven’t really done any Java development in the past).
Installed Eclipse 3.6 (Helios) and installed the ADT plugin for it, as detailed here.
Following that, tried to build a new project following the guide here.
Got to the New Project page but there were no Build Targets available in the list.
For me, the issue was that Eclipse didn’t know where the Android SDK was located, so it didn’t know what builds were available. To fix:
1. In Eclipse go to Window -> Preferences
2. Click on Android
3. Browse to the path of the SDK (for me, on Windows, this was default C:\Program Files\Android\android-sdk-windows)
4. Click Apply, then OK
The builds that have been added to the SDK will appear in the list. Go to File -> New -> Project again and this time the Build Targets list is there:
Popularity: 14% [?]

