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 know this question is posted already here, but that doesn't solve my problem.

I pull a project from github branch, and when i try to import it : File->Import->General->Existing projects into workspace then Select root directory and here when i click on Finish button i get Invalid project description.

I am pulling the project into a folder called Android, this folder contains the main folder of the project MyAndroidProject which i imported in Eclipse.

I don't know what is wrong here.

share|improve this question
Can you post the stack trace or any other information? Kind of hard to tell from the information you've provided. – James McCracken Oct 1 '12 at 16:47
What are the contents of its .project file? – nitind Oct 1 '12 at 20:55
Good afternoon, look out the link [Invalid project description][1] [1]: stackoverflow.com/questions/5784652/… – Rodolfo Nov 19 '12 at 16:31

1 Answer

up vote 12 down vote accepted

I know I'm late to the party, but just in case someone else is stuck at this point, just like me a couple of minutes ago: You could try File>Import>Existing Android Code into Workspace. I had the Git repository I wanted to import directly in my workspace. Still, I needed to check the Copy projects into workspace option in order to have it working.

Edit

I just checked out the link from one of the comments above, recommending File>Import>General>Existing Project into Workspace. I should mention that the eclipse project metadata was not under version control in my case, rendering an import as existing project impossible! This solution applies to existing android code without .project files etc.

Edit 2

Just another remark: I realized recently that this issue only seems to occur if the project root also is the repository root, much like this:

workspace  
└─ project root  
   └┬ .git
    ├ src
    └ ...

When I moved the project just one directory level lower, the issue disappeared.

share|improve this answer
i don't kw how but it works for me if i move my project to one level below anywayz +1 for you :) – varun bhardwaj Mar 16 at 14:13
You're welcome, thanks for the upvote! It kind of surprised me as well. I noticed that when I added an Android test project to my repo, for which I had to move things one level down. – Michael Jess Mar 18 at 20:56
+1, yes same here i moved a level below it worked. thanks – LLL May 12 at 10:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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