I am trying to create a new project from existing source code. I keep getting the following error: "Invalid Project Description", project path "overlaps the location of another project" with the same name. The reason is that I created that project from the source code before, but then I deleted that project and deleted its whole directory, before adding the source code directory again. I tried everything like cleaning and restarting, but nothing worked. I looked in my workspace directory, but there are no traces for the old project. There are several questions around this problem such as this Attempting Android Notepad Tutorial - Exercise 1 - More problems, but none of the answers worked for me!


当前回答

如果你希望以以下方式从现有源代码打开一个新项目:

File -> Import -> General -> Existing Project into Workspace

你仍然有“无效的项目描述”的信息。 我只要进去就能解出来

File -> Switch Workspace

选择一个最近的工作场所。

其他回答

解决这个问题最简单的方法就是将项目移动到另一个文件夹并导入。这是因为您已经在该文件夹中有了该项目(或具有相同名称的项目)。当您删除project时,eclipse仍然保留对它的引用

我使用以下步骤解决了这个问题:

1) File -> Import
2) Click General then select Existing Projects into Workspace
3) Click Next
4) Browse the directory of the project

单击Finish。

这对我很有效

我使用以下步骤解决了这个问题:

File ->导入 单击General,然后在Workspace中选择Existing Projects 单击Next 浏览项目目录 单击Finish。

这对我很有效

有各种各样的场景,但在我的例子中,我想保留文件夹及其内容,因为它已经从.git中签出。但是,我需要能够使用Eclipse修改源代码和其他内容。

我发现问题是.cproject和.project文件的路径信息非常特定于环境(与我的环境不匹配)。

我所做的是:

创建了一个新的空文件夹(名称不同),并创建了一个新的 指向该文件夹的工作区。 签出或复制。git项目/文件夹到空文件夹中。 然后导入工作区中的“常规”“现有项目”。

关键似乎是用不同的名称创建顶层的空白工作空间。

我希望这能帮助到一些人。

复制项目到你的工作空间,从eclipse文件>新建>项目创建新的Android应用程序项目,瞧。