[Eclipse] No projects are found to import

Tadashi Shigeoka ·  Mon, April 22, 2013

When trying to import an existing project in Eclipse, I got the message “No projects are found to import” and couldn’t import it.

The cause was that the .project file didn’t exist.

By adding the .project file as shown below, I was able to import the project normally.



  MyProjectName
  
  
  
  
    
      com.android.ide.eclipse.adt.ResourceManagerBuilder
      
      
    
    
      com.android.ide.eclipse.adt.PreCompilerBuilder
      
      
    
    
      org.eclipse.jdt.core.javabuilder
      
      
    
    
      com.android.ide.eclipse.adt.ApkBuilder
      
      
    
  
  
    com.android.ide.eclipse.adt.AndroidNature
    org.eclipse.jdt.core.javanature
  

Reference Information

That’s all from the Gemba.