2

I've just download the Android Developer Tools v21.1.0-569685 for Mac. I'm unable to create an android application project and get an empty project whenever I follow the steps below.

  1. I've opened Eclipse.
  2. And used the menu File -> New -> Android Application Project.
  3. I enter TestApp as the name.
  4. Then click next through all pages leaving the default options.
  5. When I get to the last page (Next is Disabled and Finish becomes enabled) I click Finish. There's a bit of activity when this happens and I can see a project added to the Package Explorer in the background, but the window with the Finish button stays there. If I cancel out of the android application wizard the project it created is still present by it's empty (see screenshot).

Note: I've attempted the solutions at Not able to create new Project with ADT version 20 with no joy.

Community
  • 1
  • 1
Leigh McCulloch
  • 1,886
  • 24
  • 23

1 Answers1

0

The problem was another Java application had installed different versions of some .jar files into /Library/Java/Extensions. .jar files on that path are automatically loaded. Removing the .jar files from that path resolved the problem.

In my case the problem was specifically the Australian Governments AUSKey software that installs .jars into the Extensions directory.

The solution was reported here https://code.google.com/p/android/issues/detail?id=54452.

Leigh McCulloch
  • 1,886
  • 24
  • 23