1. 程式人生 > >Ecplise匯入工程報Cannot import *** because the project name is in use問題

Ecplise匯入工程報Cannot import *** because the project name is in use問題

Ecplise匯入工程時,報如下錯誤:


原因在於工程中有相同的工程名,匯入報上面的錯誤,解決辦法:

開啟工程目錄下面的.project檔案


修改

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>TestProject</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

修改<name>TestProject</name>中的TestProject名字為一個新的、與當前工作目錄下其他工程名不一致,然後再重新匯入即可。