I read that you prefer Eclipse, but you can always work from the command line.
On a GNU / Linux system, you can do
$ cp -r $ANDROID_SDK/samples/android-15/LunarLander . $ android update project --path LunarLander/ --target 3 --subprojects $ cd LunarLander/ $ ant debug install
You must choose a target according to your system. You can select one identifier from the list that you get with this command.
$ android list targets
source share