Today I installed the new Android SDK tools revision 17. When I started eclipse, it said that you should upgrade your ADT. I downloaded the latest version ZIP file (ADT-17.0.0.zip) and I followed the Eclipse instructions to install ADT. Everything goes fine (as I expected) but at the end I was unable to see Android in preferences and also android project in New Project wizard. I am using Eclipse Indigo and Windows 7.
Any idea?
Try running eclipse with
-clean
option from command line, like this:This should clean eclipse plugin preference caches, probably would resolve your case.
Same experience for me.
Started with Mapview compile errors after getting the latest Java update 21Mar2012 though I hadn't changed path configs yet.
Loaded some SDK updates then following the suggestion from Eclipse Helio, found and updated to v17 of ADT. Path to Java on compile is broken yet Java compiler options have 1.6 as default.
Loaded Eclipse Indigo and loaded everything from scratch linked in latest Java update, same Java compile error. You know something broken when Java.lang and String types are unknown...
Something seriously in error with V17 ADT and Windows eclipse.
Anyone know how to revert to previous ADT and SDK ?
ADDED: When I looked at my other Android projects I noticed the Android 2.2 library class path was there (prev ADT versions). The key to successful workaround changes seemed to be the
.classpath
files in the project workspace.The workaround for me was to find a pre V17 file (below)
I then added the android and maps JARs manually under
Project > Properties > Java Build Path
and the file became:This now works for me :)
Read this on android developer page under Updating Plugin for Eclipse. I hope this helps.