Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to import and existing Android project into my current Eclipse workspace. I select File->New->Android Project, which brings up the Android project dialog, I then select, "Create project from existing source", Location, Build Target and Finish.

I get the following error: Invalid project description.

Does anybody know how to get past this error?

share|improve this question
1  
I changed the workspace location to a new directory, it seemed to have fixed this problem. – user628135 Feb 22 '11 at 10:33

10 Answers

  1. File->Import->General->Existing Projects into Workspace, Next
  2. Select root directory: /path/to/project
  3. Projects->Select All
  4. UNCHECK both "Copy projects into workspace" and "Add project to working sets"
  5. Finish
share|improve this answer
1  
For me this is what worked the best. – peter Jan 12 '12 at 20:56
@JamesWald, when exporting to later import, should I Select All the tree of the project to export rather than only the source? I definitely want the res folder too. – Vass Mar 21 '12 at 16:01
I've never actually tried to export. It seems to import using the working copy as-is. Try to copy the entire project root and then import it. – James Wald Apr 4 '12 at 6:28
This is better way to import projects. Tahnk you ))) – frops Feb 12 at 5:51
@JamesWald Can I copy projects into workspace? – Stallman Feb 19 at 9:46
show 3 more comments
up vote 37 down vote accepted

Solved: If you want to "Create project from existing source", you need to create a new directory and then put the project directory tree into that new directory. Then point to the new directory when importing.

*I found the solution on a Korean website, that's why I missed my first search with google.

share|improve this answer
1  
Thank you! And praise stackoverflow :) – droidgren Aug 15 '10 at 19:53
5  
This is quite a messy solution. I recommend the import-> general -> existing project. Having to crate new folders and copy things around seems like unnecessary extra work and confusion. – Strahlee Apr 2 '12 at 19:50
I took this approach but ran into one issue, I wanted my workspace to be in the parent folder of what I was importing. If you take this approach, you must name your project the same name as the folder so it can find the source. – seePatCode Jul 7 '12 at 16:08
The write, docmented solution is the one of James Wald. All other 'findings' and 'patches' are misleading and ouf of a professional status. – Ginger Opariti Mar 12 at 12:09

This error message appears when the source code you try to import is inside an existing workspace.

Put your source code in a directory OUTSIDE any existing workspace and then import

share|improve this answer
Exactly. Your solution worked for me. Do you know any reason behind this? – 256 Nov 21 '12 at 6:26
Thanks James. Finally i known why i can't import my old projects existing in workspace and solved it. – Huynh Vinh Phat Nov 23 '12 at 2:47
Excelent @James Bayley. It worked prefectly and clear! – Jorge Gil Jan 17 at 23:50
Wohoo - worked! It's sad that this issue still exists after so long without any handling by the IDE or at least a notice. – Shaihi May 9 at 19:20

Just delete the ".project" file in your project folder (it's hidden on Linux, use "ls -a" to show), then from Eclipse, choose Create Android Project from existing source

share|improve this answer
This was exactly my problem, and simply deleting the .project file nailed it! Poof! Instant success following this procedure. Thanks so much – David at HotspotOffice Feb 14 at 16:15

You can also use Make new > General > Project, then import the project to that project directory

share|improve this answer

I had the problem of getting errors when checking out an Android project from SVN. This is what I did and the whole thing settled down.
1. checkout the project from SVN as we normally do any other project
2. right click and get properties of the project
3. In the java build path->order and export tab select the android API and OK it

this removed all the project issues
so far so good but not sure if this is the 100% correct method

share|improve this answer

It seems you cannot have your project root, with the AndroidManifest.xml deeper than one directory level below your workspace root. I struggled for an hour with this before I just gave up and rearranged my repo.

share|improve this answer

I found James Wald's answer the closest to my solution, except instead of "File->Import->General->Existing Projects into Workspace" (which did not work for me at all) I used "File->Import->Android->Existing Android Code Into Workspace". I am using Helios, maybe your version of Eclipse does not have this quirk.

share|improve this answer

Im not sure this will solve your problem since I dont know where it originats from, but when I import a project i go File -> Import -> Existing projects into workspace. Maybe it will circumvent your problem.

share|improve this answer
Thanks, but there is nothing on the import dialog that points to an Android project. For any other type of project, that would be ok. – paul Feb 9 '10 at 18:45
@paul File -> Import -> Existing projects into workspace should work for any project type, including Android projects, as long as it is a valid Eclipse project. – mbaird Feb 9 '10 at 18:53
3  
The above path should be File -> Import -> General -> Existing projects into workspace. I imported there and it worked like a charm. – Kevin Goff Jul 28 '10 at 19:12

protected by Community May 5 '12 at 12:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.